/* Lunar/Space Theme Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background-color: #0a0e1a;
    color: #e0e0e0;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 60% 40%, #232946 0%, #0a0e1a 80%),
                      url('https://www.transparenttextures.com/patterns/stardust.png');
    background-size: cover, 400px 400px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Lunar Taskbar */
.taskbar {
    background: linear-gradient(90deg, #181c2b 0%, #232946 100%);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #232946;
    border-bottom: 3px solid #0a0e1a;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    z-index: 1000;
    box-shadow: 0 -2px 20px 0 #232946cc;
}

.start-button {
    background: linear-gradient(135deg, #f39c12, #ffd700 80%);
    border-top: 3px solid #ffed4e;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #232946;
    border-bottom: 3px solid #232946;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 35px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    margin-right: 10px;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
    border-radius: 5px;
    box-shadow: 0 0 8px #ffd700cc;
}

.start-button:active {
    border-top: 3px solid #232946;
    border-left: 3px solid #232946;
    border-right: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.taskbar-items {
    display: flex;
    flex-grow: 1;
}

.taskbar-item {
    background: linear-gradient(to bottom, #232946, #181c2b);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #0a0e1a;
    border-bottom: 3px solid #0a0e1a;
    padding: 0 15px;
    height: 35px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    cursor: pointer;
    color: #e0e0e0;
    text-shadow: 1px 1px 0 #000;
    border-radius: 5px;
    box-shadow: 0 0 8px #23294699;
}

.taskbar-clock {
    background-color: #181c2b;
    border: 3px inset #ffd700;
    padding: 0 10px;
    height: 35px;
    display: flex;
    align-items: center;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    border-radius: 5px;
    box-shadow: 0 0 8px #ffd700cc;
}

/* Lunar Desktop Icons */
.desktop-icons {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.desktop-icon {
    width: 90px;
    margin-bottom: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.desktop-icon:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 0 8px #ffd700cc);
}

.desktop-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
    border: 3px solid #ffd700;
    border-radius: 16px;
    background: rgba(35, 41, 70, 0.7);
    padding: 5px;
    box-shadow: 0 5px 15px #0a0e1a99;
}

.desktop-icon p {
    font-family: 'Bubblegum Sans', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    text-shadow: 2px 2px 2px #232946;
    background-color: rgba(35, 41, 70, 0.7);
    padding: 3px 5px;
    border-radius: 10px;
}

header {
    background: linear-gradient(90deg, #232946 0%, #181c2b 100%);
    padding: 15px 0;
    border-bottom: 6px solid #ffd700;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 20px #232946cc;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 3rem;
    color: #fff;
    text-shadow: 3px 3px 0 #232946, -3px 3px 0 #232946, -3px -3px 0 #232946, 3px -3px 0 #232946;
    transform: rotate(-3deg);
    display: inline-block;
    padding: 10px;
    background: linear-gradient(90deg, #ffd700 0%, #232946 100%);
    border-radius: 15px;
    border: 4px solid #ffd700;
    animation: wobble 5s infinite;
    box-shadow: 0 0 16px #ffd700cc;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* Lunar Windows */
.window, .terminal-window, .meme-section, .economics, .economic-quotes {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #0a0e1a;
    border-bottom: 3px solid #0a0e1a;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 0 32px #232946cc, 0 0 64px #0a0e1a99 inset;
    border-radius: 15px;
    overflow: hidden;
    color: #e0e0e0;
}

.window-title, .terminal-title, .meme-title, .economics-title, .quotes-title {
    background: linear-gradient(90deg, #ffd700 0%, #232946 100%);
    color: #232946;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #0a0e1a;
    border-bottom: 2px solid #232946;
}

.window-buttons {
    display: flex;
}

.window-button {
    width: 25px;
    height: 25px;
    background: linear-gradient(to bottom, #f39c12, #e67e22);
    border-top: 2px solid #ffd700;
    border-left: 2px solid #ffd700;
    border-right: 2px solid #232946;
    border-bottom: 2px solid #232946;
    margin-left: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    color: #232946;
    font-weight: bold;
    box-shadow: 0 0 8px #ffd700cc;
}

.window-content {
    padding: 20px;
}

.terminal-content {
    background-color: #0a0e1a;
    background-image: radial-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    color: #ffd700;
    font-family: 'VT323', monospace;
    padding: 20px;
    height: 320px;
    overflow-y: auto;
    display: flex;
    border: 5px solid #f39c12;
    border-top: none;
    box-shadow: 0 0 16px #ffd700cc inset;
}

.terminal-penguin {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(35, 41, 70, 0.5);
    border-radius: 10px;
    padding: 10px;
    margin-right: 15px;
    box-shadow: 0 0 8px #ffd700cc;
}

.terminal-penguin img {
    width: 120px;
    height: 140px;
    margin-bottom: 10px;
    border: 3px solid #ffd700;
    border-radius: 10px;
    background: #232946;
}

.terminal-message {
    margin-bottom: 15px;
    animation: typewriter 0.5s steps(40, end);
    text-shadow: 0 0 5px #ffd700;
    font-size: 1.2rem;
    color: #ffd700;
}

.terminal-prompt {
    color: #ffd700;
    margin-right: 10px;
    font-weight: bold;
    text-shadow: 0 0 5px #ffd700;
    font-size: 1.2rem;
}

.terminal-input {
    background-color: transparent;
    border: none;
    color: #ffd700;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    flex-grow: 1;
    outline: none;
    text-shadow: 0 0 5px #ffd700;
}

/* Windows-style menu with dark theme */
.nav-links {
    display: flex;
    list-style: none;
    background: linear-gradient(90deg, #232946 0%, #181c2b 100%);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #0a0e1a;
    border-bottom: 3px solid #0a0e1a;
    padding: 2px;
    border-radius: 30px;
    box-shadow: 0 0 8px #ffd700cc;
}

.nav-links li {
    margin-left: 0;
    border-right: 1px solid #ffd70066;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.2rem;
    font-family: 'Bubblegum Sans', cursive;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s;
    text-shadow: 1px 1px 0 #232946;
}

.nav-links a:hover {
    background-color: #232946;
    color: #ffd700;
    border-radius: 20px;
    transform: scale(1.1);
    box-shadow: 0 0 8px #ffd700cc;
}

/* Windows-style windows with dark theme */
.window {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #0a0e1a;
    border-bottom: 3px solid #0a0e1a;
    margin: 30px 0;
    position: relative;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
    color: #e0e0e0;
}

.window-title {
    background: linear-gradient(to right, #f39c12, #232946);
    color: #232946;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #0a0e1a;
}

.window-buttons {
    display: flex;
}

.window-button {
    width: 25px;
    height: 25px;
    background: linear-gradient(to bottom, #f39c12, #e67e22);
    border-top: 2px solid #ffd700;
    border-left: 2px solid #ffd700;
    border-right: 2px solid #232946;
    border-bottom: 2px solid #232946;
    margin-left: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    color: #232946;
    font-weight: bold;
}

.window-content {
    padding: 20px;
}

/* Stonks Terminal - dark themed */
.terminal-window {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #0a0e1a;
    border-bottom: 3px solid #0a0e1a;
    margin: 40px 0;
    position: relative;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
}

.terminal-title {
    background: linear-gradient(to right, #f39c12, #232946);
    color: #232946;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #0a0e1a;
}

.terminal-content {
    background-color: #0a0e1a;
    background-image: radial-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    color: #ffd700;
    font-family: 'VT323', monospace;
    padding: 20px;
    height: 320px;
    overflow-y: auto;
    display: flex;
    border: 5px solid #f39c12;
    border-top: none;
}

.terminal-penguin {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(35, 41, 70, 0.5);
    border-radius: 10px;
    padding: 10px;
    margin-right: 15px;
}

.terminal-penguin img {
    width: 120px;
    height: 140px;
    margin-bottom: 10px;
    border: 3px solid #ffd700;
    border-radius: 10px;
}

.terminal-chat {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.terminal-messages {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.terminal-message {
    margin-bottom: 15px;
    animation: typewriter 0.5s steps(40, end);
    text-shadow: 0 0 5px #ffd700;
    font-size: 1.2rem;
    color: #ffd700;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.terminal-input-area {
    display: flex;
    border-top: 2px solid #ffd700;
    padding-top: 15px;
}

.terminal-prompt {
    color: #ffd700;
    margin-right: 10px;
    font-weight: bold;
    text-shadow: 0 0 5px #ffd700;
    font-size: 1.2rem;
}

.terminal-input {
    background-color: transparent;
    border: none;
    color: #ffd700;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    flex-grow: 1;
    outline: none;
    text-shadow: 0 0 5px #ffd700;
}

/* Hero section redesigned as a window - lunar themed */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, #181c2b, #232946);
    overflow: hidden;
    padding: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, #232946, #181c2b);
    border-radius: 15px;
    padding: 20px;
    max-width: 40%;
    margin-right: 20px;
    border: 2px solid #ffd700;
}

.hero-text {
    flex: 2;
    padding: 25px;
    background: url('/api/placeholder/400/400') center/cover;
    position: relative;
    border-radius: 15px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Ensure no unwanted nested hero elements */
.window-content .hero {
    margin: 0;
    border: none;
}

.hero-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 41, 70, 0.8);
    z-index: 0;
    border-radius: 15px;
}

.hero-text h1 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 0 #000, 3px 3px 0 #232946;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-family: 'Comic Neue', cursive;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'Bubblegum Sans', cursive;
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #232946;
    border-bottom: 3px solid #232946;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    text-shadow: 2px 2px 0 #000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.btn:hover {
    transform: scale(1.1) rotate(-3deg);
}

.btn:active {
    border-top: 3px solid #232946;
    border-left: 3px solid #232946;
    border-right: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

/* Features as program icons - dark themed */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #232946, #181c2b);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #d68910, #f39c12);
}

.feature-card:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.5);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border: 3px solid #ffd700;
    border-radius: 15px;
    background-color: #181c2b;
    padding: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.feature-card h2 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 1px 1px 0 #000;
}

.feature-card p {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: bold;
    color: #e0e0e0;
}

/* Meme section as a window - dark themed */
.meme-section {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    margin: 40px 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.meme-title {
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.meme-content {
    padding: 25px;
    background: linear-gradient(135deg, #232946, #181c2b);
}

.memes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.meme-card {
    background-color: #181c2b;
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.meme-card:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.5);
}

.meme-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid #f39c12;
}

.meme-caption {
    padding: 20px;
    text-align: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(to bottom, #232946, #181c2b);
}

/* Economics section as a window - dark themed */
.economics {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    margin: 40px 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.economics-title {
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.economics-content {
    display: flex;
    padding: 25px;
    background: linear-gradient(135deg, #232946, #181c2b);
}

.economics-text {
    flex: 2;
    padding-right: 25px;
}

.economics-image {
    flex: 1;
    text-align: center;
}

.economics-coin {
    width: 500px;
}

.economics-text p {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: bold;
    color: #e0e0e0;
}

/* Quotes section as a window - dark themed */
.economic-quotes {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    margin: 40px 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quotes-title {
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: #fff;
    padding: 10px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 2px 2px 0 #000;
}

.quotes-content {
    padding: 25px;
    background: linear-gradient(135deg, #232946, #181c2b);
}

.quotes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.quote-card {
    background: linear-gradient(135deg, #181c2b, #232946);
    padding: 25px;
    position: relative;
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.quote-card::before {
    content: "\201C";
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 120px;
    color: #ffd700;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.quote-author {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.1rem;
    text-align: right;
    color: #ffd700;
}

footer {
    background: linear-gradient(to right, #232946, #181c2b);
    color: #fff;
    padding: 25px 0;
    text-align: center;
    position: relative;
    border-top: 3px solid #ffd700;
    margin-bottom: 45px; /* Space for taskbar */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
}

.footer-links a:hover {
    color: #ffd700;
    transform: scale(1.1);
    display: inline-block;
}

.copyright {
    margin-top: 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    text-shadow: 1px 1px 0 #000;
}

/* Windows dialog box - dark themed */
.dialog-box {
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    padding: 15px;
    width: 350px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.dialog-title {
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: #fff;
    padding: 8px 15px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 10px;
    text-shadow: 2px 2px 0 #000;
}

.dialog-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dialog-icon {
    margin-right: 15px;
}

.dialog-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e0e0e0;
}

.dialog-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dialog-button {
    padding: 8px 20px;
    background: linear-gradient(to bottom, #232946, #181c2b);
    font-family: 'Bubblegum Sans', cursive;
    border-top: 2px solid #ffd700;
    border-left: 2px solid #ffd700;
    border-right: 2px solid #181c2b;
    border-bottom: 2px solid #181c2b;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}

.dialog-button:hover {
    transform: scale(1.1);
}

.dialog-button:active {
    border-top: 2px solid #181c2b;
    border-left: 2px solid #181c2b;
    border-right: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

/* Start menu styles */
.start-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 220px;
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1500;
    overflow: hidden;
    font-family: 'Comic Neue', cursive;
}

.start-header {
    background: linear-gradient(to right, #f39c12, #e67e22);
    padding: 10px;
    display: flex;
    align-items: center;
}

.start-header-text {
    color: white;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.3rem;
    transform: rotate(-90deg);
    transform-origin: left center;
    text-shadow: 2px 2px 0 #000;
    margin-left: 25px;
}

.start-items {
    padding: 8px 0;
}

.start-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.2s;
    color: #e0e0e0;
}

.start-item:hover {
    background-color: #f39c12;
    color: white;
}

.start-item img {
    margin-right: 10px;
}

.start-separator {
    height: 1px;
    background: #181c2b;
    margin: 5px 0;
    border-bottom: 1px solid #ffd700;
}

/* Animation Classes */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.rotate {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.shake {
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Notification system */
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    background: linear-gradient(135deg, #181c2b, #232946);
    border-top: 3px solid #ffd700;
    border-left: 3px solid #ffd700;
    border-right: 3px solid #181c2b;
    border-bottom: 3px solid #181c2b;
    border-radius: 8px;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.7);
    z-index: 2000;
    animation: notification-appear 0.3s ease-out;
}

.notification.notification-closing {
    animation: notification-disappear 0.3s ease-in forwards;
}

@keyframes notification-appear {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes notification-disappear {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

.notification-header {
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: #fff;
    padding: 8px 12px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 1px 1px 0 #000;
    border-radius: 8px 8px 0 0;
}

.notification-close {
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    background: linear-gradient(to bottom, #ff3333, #cc0000);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ff6666;
    border-left: 1px solid #ff6666;
    border-right: 1px solid #990000;
    border-bottom: 1px solid #990000;
}

.notification-content {
    padding: 15px;
    display: flex;
    align-items: flex-start;
}

.notification-icon {
    margin-right: 15px;
}

.notification-message {
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    line-height: 1.4;
    color: #e0e0e0;
    flex-grow: 1;
}

.notification-footer {
    display: flex;
    justify-content: center;
    padding: 0 15px 15px;
}

.notification-button {
    background: linear-gradient(to bottom, #232946, #181c2b);
    color: #fff;
    border: none;
    border-top: 2px solid #ffd700;
    border-left: 2px solid #ffd700;
    border-right: 2px solid #181c2b;
    border-bottom: 2px solid #181c2b;
    border-radius: 5px;
    padding: 8px 25px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1rem;
    cursor: pointer;
    text-shadow: 1px 1px 0 #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links a {
        font-size: 1rem;
        padding: 6px 10px;
    }

    .logo {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 15px;
        width: 100%;
    }

    .nav-links li {
        flex: 1;
        text-align: center;
    }

    .hero,
    .economics-content {
        flex-direction: column;
    }

    .features,
    .memes,
    .quotes-container {
        grid-template-columns: 1fr;
    }

    .terminal-content {
        flex-direction: column;
        height: 450px;
    }

    .terminal-penguin {
        margin-bottom: 20px;
    }

    .desktop-icons {
        display: none;
    }
}

/* Add more lunar/space themed styles for other sections as needed... */