@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    --space-deep: #12092e; /* Deep playful violet background */
    --space-surface: #241656; /* Playful secondary panel color */
    --space-surface-bright: #3c248f; /* High-contrast card color */
    --neon-cyan: #00ffff;
    --neon-pink: #ff00aa;
    --cartoon-yellow: #ffe600;
    --cartoon-green: #39ff14;
    --cartoon-orange: #ff6600;
    --text-white: #ffffff;
    --text-muted: #b4a9f3;
    --font-heading: 'Lilita One', cursive; /* Ultra-fun cartoon space font */
    --font-body: 'Space Grotesk', sans-serif; /* Highly readable friendly body font */
    --transition-bouncy: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Comic-style bounce transitions */
    --container-max: 1300px;
    
    /* Cartoon 2D Outlines */
    --cartoon-border: 4px solid #12092e;
    --cartoon-border-white: 4px solid #ffffff;
    --cartoon-shadow: 8px 8px 0px #12092e;
    --cartoon-shadow-cyan: 8px 8px 0px var(--neon-cyan);
    --cartoon-shadow-pink: 8px 8px 0px var(--neon-pink);
    --cartoon-shadow-yellow: 8px 8px 0px var(--cartoon-yellow);
}

/* Reset & Playful Global Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--space-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    /* Cartoon starry sky and nebula blobs */
    background-image: 
        radial-gradient(circle at 15% 15%, var(--neon-pink) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, var(--nebula-glow, #7a22ff) 0%, transparent 30%),
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 3px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 40px 40px;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

/* Fun Cartoon Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}
::-webkit-scrollbar-track {
    background: var(--space-deep);
    border-left: 4px solid #12092e;
}
::-webkit-scrollbar-thumb {
    background: var(--cartoon-yellow);
    border: 3px solid var(--space-deep);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Playful Top Disclaimer Bar */
.top-disclaimer {
    background: repeating-linear-gradient(
        -45deg,
        #1d1146,
        #1d1146 10px,
        #241656 10px,
        #241656 20px
    );
    border-bottom: 4px solid #12092e;
    color: var(--cartoon-yellow);
    text-align: center;
    padding: 12px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1001;
    text-shadow: 2px 2px 0px #12092e;
}

/* Bouncy Header */
.slim-header {
    background: rgba(36, 22, 86, 0.95);
    border-bottom: 4px solid #12092e;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    box-shadow: 0 6px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Comic 3D Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 0px #12092e, -1px -1px 0px #12092e, 1px -1px 0px #12092e, -1px 1px 0px #12092e, 1px 1px 0px #12092e;
    transition: var(--transition-bouncy);
}

.logo-link span {
    color: var(--cartoon-yellow);
    display: inline-block;
    transform: rotate(-3deg) scale(1.1);
    margin-right: 2px;
}

.logo-link:hover {
    transform: scale(1.08) rotate(2deg);
}

/* Header Nav Links as Cute Tabs */
.nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: var(--transition-bouncy);
    font-family: var(--font-heading);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--space-deep);
    background: var(--neon-cyan);
    border-color: #12092e;
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 4px 4px 0px #12092e;
}

/* Playful Rounded Button */
.header-cta {
    background: var(--cartoon-yellow);
    color: var(--space-deep);
    border: 3px solid #12092e;
    padding: 10px 22px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-bouncy);
    box-shadow: 4px 4px 0px #12092e;
}

.header-cta:hover {
    transform: translateY(-4px) rotate(2deg);
    box-shadow: 6px 6px 0px #12092e;
    background: var(--cartoon-green);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: var(--space-surface-bright);
    border: 3px solid #12092e;
    border-radius: 12px;
    color: var(--text-white);
    padding: 8px 12px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 3px 3px 0px #12092e;
    transition: var(--transition-bouncy);
}

.mobile-toggle:active {
    transform: translateY(2px);
    box-shadow: 1px 1px 0px #12092e;
}

/* Layout Containers */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px;
}

/* Hero Section */
.hero-sec {
    position: relative;
    padding: 80px 0 40px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

/* Cute Comic Badge Tag */
.hero-tag {
    display: inline-block;
    background: var(--neon-pink);
    border: 3px solid #12092e;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    transform: rotate(-2deg);
    box-shadow: 4px 4px 0px #12092e;
}

/* Thick Comic Titles */
.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 4px 4px 0px #12092e, 8px 8px 0px rgba(0, 0, 0, 0.15);
}

.hero-title span {
    color: var(--neon-cyan);
    display: block;
    transform: skewX(-4deg);
    text-shadow: 4px 4px 0px #12092e, 8px 8px 0px rgba(0, 255, 255, 0.15);
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 36px;
    max-width: 580px;
    background: rgba(36, 22, 86, 0.6);
    padding: 16px 20px;
    border-radius: 18px;
    border-left: 6px solid var(--neon-pink);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Jelly Bean Cartoon Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cartoon-yellow);
    color: var(--space-deep);
    font-family: var(--font-heading);
    font-weight: bold;
    padding: 18px 38px;
    border-radius: 20px;
    border: 4px solid #12092e;
    text-decoration: none;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    transition: var(--transition-bouncy);
    box-shadow: 6px 6px 0px #12092e;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03) rotate(-1deg);
    box-shadow: 10px 10px 0px #12092e;
    background: var(--cartoon-green);
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 3px 3px 0px #12092e;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--space-surface-bright);
    border: 4px solid #12092e;
    color: var(--text-white);
    font-family: var(--font-heading);
    padding: 18px 38px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition-bouncy);
    box-shadow: 6px 6px 0px #12092e;
}

.btn-secondary:hover {
    background: var(--neon-pink);
    color: white;
    transform: translateY(-5px) scale(1.03) rotate(1deg);
    box-shadow: 10px 10px 0px #12092e;
}

/* 2D Cute Planet Creator (Interactive Cartoon Style) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-sphere {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffbb00 0%, #ff5500 80%);
    position: relative;
    border: 6px solid #12092e;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.2);
    animation: bounce-float 5s ease-in-out infinite alternate;
}

/* Cartoon Planet Stripes */
.cosmic-sphere::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 0, 85, 0.2) 15px,
        rgba(255, 0, 85, 0.2) 30px
    );
    pointer-events: none;
}

/* Cute Cartoon Saturn Ring */
.cosmic-sphere::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 70px;
    background: rgba(0, 255, 255, 0.4);
    border: 6px solid #12092e;
    border-radius: 50%;
    left: -50px;
    top: calc(50% - 35px);
    transform: rotate(-15deg);
    z-index: 5;
    pointer-events: none;
}

/* Funny Animating Planet Eyes & Mouth */
.planet-eyes {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 6;
}

.planet-eye {
    width: 34px;
    height: 34px;
    background: #ffffff;
    border-radius: 50%;
    border: 4px solid #12092e;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blink-eye 4s infinite step-end;
}

.pupil {
    width: 12px;
    height: 12px;
    background: #12092e;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 6px;
    animation: look-around 5s infinite ease-in-out;
}

.planet-smile {
    position: absolute;
    width: 40px;
    height: 20px;
    border-bottom: 5px solid #12092e;
    border-radius: 0 0 40px 40px;
    background: transparent;
    left: calc(50% - 20px);
    top: 55%;
    z-index: 6;
}

@keyframes bounce-float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-25px) rotate(4deg); }
}

@keyframes blink-eye {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes look-around {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(3px, -2px); }
    50% { transform: translate(-3px, 1px); }
    75% { transform: translate(2px, 3px); }
}

/* Arcade Console Box */
.experience-section {
    position: relative;
    padding: 80px 0;
}

.game-console {
    background: var(--space-surface);
    border: 6px solid #12092e;
    border-radius: 32px;
    padding: 30px;
    box-shadow: 16px 16px 0px #12092e;
    position: relative;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 4px solid #12092e;
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.game-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--cartoon-yellow);
    background: #12092e;
    padding: 8px 18px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: var(--cartoon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cartoon-green);
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid #12092e;
}

/* FIT THE GAME IN THE FRAME (ABSOLUTE POSITIONING) */
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Header Typography */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--neon-pink);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    background: rgba(255, 0, 170, 0.1);
    padding: 6px 16px;
    border-radius: 12px;
    border: 2px solid var(--neon-pink);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: #ffffff;
    text-shadow: 3px 3px 0px #12092e;
}

/* Comic Styled Cards Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.cosmic-card {
    background: var(--space-surface-bright);
    border: 4px solid #12092e;
    border-radius: 28px;
    padding: 35px;
    transition: var(--transition-bouncy);
    position: relative;
    box-shadow: 8px 8px 0px #12092e;
}

.cosmic-card:nth-child(1) {
    border-top-color: var(--neon-pink);
}
.cosmic-card:nth-child(2) {
    border-top-color: var(--cartoon-yellow);
}
.cosmic-card:nth-child(3) {
    border-top-color: var(--neon-cyan);
}

.cosmic-card:hover {
    transform: translateY(-8px) rotate(1.5deg);
    box-shadow: 12px 12px 0px #12092e;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(2px 2px 0px #12092e);
    animation: pulse-icon 2s infinite alternate;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    100% { transform: scale(1.15) rotate(-5deg); }
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-white);
    text-shadow: 2px 2px 0px #12092e;
}

.card-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Double Split Feature layout with Sticker-like pictures */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.split-image-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 6px solid #12092e;
    height: 420px;
    box-shadow: 12px 12px 0px #12092e;
    background: #000;
}

.split-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-bouncy);
}

.split-image-container:hover img {
    transform: scale(1.08) rotate(-1deg);
}

/* Cartoon Stats Block */
.stats-banner {
    background: #12092e;
    border: 4px solid var(--neon-cyan);
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
}

.stat-item .stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--cartoon-yellow);
    text-shadow: 3px 3px 0px #000;
    line-height: 1;
    margin-bottom: 10px;
    animation: stat-pulse 3s infinite alternate;
}

@keyframes stat-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.06) rotate(1deg); }
}

.stat-item .stat-label {
    font-family: var(--font-heading);
    color: var(--neon-cyan);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* Cartoon Accordion FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--space-surface);
    border: 4px solid #12092e;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 6px 6px 0px #12092e;
    transition: var(--transition-bouncy);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-white);
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger::after {
    content: '★';
    font-size: 1.5rem;
    color: var(--cartoon-yellow);
    transition: transform 0.3s;
    text-shadow: 2px 2px 0px #12092e;
}

.faq-item.active {
    border-color: var(--neon-cyan);
    background: var(--space-surface-bright);
}

.faq-item.active .faq-trigger::after {
    transform: rotate(144deg) scale(1.3);
    color: var(--neon-pink);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-muted);
    padding: 0 24px;
}

.faq-item.active .faq-content {
    max-height: 250px;
    padding-bottom: 24px;
}

/* Contact Form Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.info-pane {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--space-surface);
    border: 4px solid #12092e;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #12092e;
}

.info-label {
    font-family: var(--font-heading);
    color: var(--cartoon-yellow);
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.1rem;
    color: var(--text-white);
}

/* Bouncy Cartoon Inputs */
.premium-form {
    background: var(--space-surface-bright);
    border: 4px solid #12092e;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 10px 10px 0px #12092e;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--neon-cyan);
}

.form-input {
    width: 100%;
    background: #12092e;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-bouncy);
}

.form-input:focus {
    outline: none;
    border-color: var(--cartoon-yellow);
    box-shadow: 4px 4px 0px var(--cartoon-yellow);
    transform: translateY(-2px);
}

/* Space Comic Articles */
.article-card {
    background: var(--space-surface);
    border: 4px solid #12092e;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 8px 8px 0px #12092e;
    transition: var(--transition-bouncy);
}

.article-card:hover {
    transform: translateY(-8px) rotate(-1.5deg);
    border-color: var(--neon-pink);
    box-shadow: 12px 12px 0px #12092e;
}

.article-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid #12092e;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-bouncy);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-meta {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.article-content {
    padding: 28px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.article-title a {
    color: var(--text-white);
    text-decoration: none;
}

.article-title a:hover {
    color: var(--neon-cyan);
}

/* Legal Pages Styling */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content {
    background: var(--space-surface);
    border: 4px solid #12092e;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 10px 10px 0px #12092e;
}

.legal-content h1, 
.legal-content h2, 
.legal-content h3 {
    font-family: var(--font-heading);
    color: var(--cartoon-yellow);
    margin-top: 35px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px #000;
}

.legal-content h1 {
    font-size: 3rem;
}

.legal-content p, .legal-content ul {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

/* Playful Starfield CTA Banner */
.cta-banner {
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 170, 0.25) 0%, transparent 80%), var(--space-surface);
    border: 4px solid #12092e;
    padding: 70px 40px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 12px 12px 0px #12092e;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 16px;
    text-shadow: 3px 3px 0px #12092e;
}

.cta-banner p {
    color: var(--text-white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

/* Giant Space Footer */
.grand-footer {
    background: #0f0727;
    border-top: 6px solid #12092e;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-top {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--cartoon-yellow);
    font-size: 1.25rem;
    margin-bottom: 24px;
    text-shadow: 2px 2px 0px #12092e;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-bouncy);
    font-weight: 500;
}

.footer-column ul a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 24px 0 24px;
    border-top: 4px solid #12092e;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-legal-bar {
    text-align: center;
    padding: 18px;
    border-radius: 16px;
    background: #12092e;
    border: 3px solid rgba(255, 255, 255, 0.05);
    color: var(--neon-pink);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 0px #000;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Retro Spaceship Cookie Console Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    background: var(--space-surface-bright);
    border: 4px solid #12092e;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 12px 12px 0px #12092e;
    z-index: 10000;
    display: none;
    animation: pop-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pop-up {
    from { transform: translateY(100px) scale(0.8); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.cookie-banner h5 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--cartoon-yellow);
    margin-bottom: 12px;
    text-shadow: 2px 2px 0px #12092e;
}

.cookie-banner p {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    border: 3px solid #12092e;
    transition: var(--transition-bouncy);
    box-shadow: 3px 3px 0px #12092e;
}

.cookie-btn.accept {
    background: var(--cartoon-green);
    color: var(--space-deep);
}

.cookie-btn.accept:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px #12092e;
}

.cookie-btn.reject {
    background: var(--space-surface);
    color: var(--text-white);
}

.cookie-btn.reject:hover {
    background: var(--neon-pink);
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px #12092e;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 36px auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        margin-top: 20px;
    }
    .split-layout {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--space-deep);
        border-bottom: 4px solid #12092e;
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .header-cta {
        display: none;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-meta {
        flex-direction: column;
        text-align: center;
    }
}