/* ===== CUSTOM STYLING FOR GENG DAYE LANDING PAGE ===== */

:root {
    --bg: #030712;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    /* Neon color scheme */
    --cyan: #06b6d4;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --lime: #84cc16;
    
    --text: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    
    --gradient-main: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 50%, var(--pink) 100%);
    --gradient-alt: linear-gradient(135deg, var(--pink) 0%, #ff8a00 100%);
    --gradient-glow: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 65%);
    
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'ZCOOL KuaiLe', sans-serif;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE & RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    background-color: var(--bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    color: inherit;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
}

/* ===== CORE BACKGROUNDS & EFFECTS ===== */
.background-wrapper {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-purple {
    width: 600px;
    height: 600px;
    background: var(--purple);
    top: -10%;
    right: -10%;
}

.orb-cyan {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: -10%;
    left: -15%;
    animation-delay: -5s;
}

.orb-pink {
    width: 400px;
    height: 400px;
    background: var(--pink);
    top: 40%;
    left: 45%;
    animation-delay: -10s;
    opacity: 0.15;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
}

/* Cursor interactive glow */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.accent-dot {
    color: var(--cyan);
    font-family: var(--font-body);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text);
}

.btn-nav-cta {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
}

.btn-nav-cta:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-toggle {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 25px rgba(6, 182, 212, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

.btn-icon {
    flex-shrink: 0;
}

/* ===== SECTION GENERAL ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: var(--gradient-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--cyan);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.android-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
}

/* Hero visual / device mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    animation: mockFloat 6s ease-in-out infinite;
}

@keyframes mockFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.mockup-img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.glow-shadow {
    position: absolute;
    inset: 10px;
    background: var(--gradient-main);
    filter: blur(40px);
    opacity: 0.25;
    z-index: 1;
    border-radius: 36px;
}

.floating-badge {
    position: absolute;
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.badge-1 {
    top: 15%;
    left: -20%;
    color: var(--pink);
    border-color: rgba(236, 72, 153, 0.3);
}

.badge-2 {
    bottom: 20%;
    right: -15%;
    color: var(--cyan);
    border-color: rgba(6, 182, 212, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--cyan);
    animation: scrollSlide 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollSlide {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

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

.feature-card {
    position: relative;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-main);
    color: white;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-card-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

/* ===== INTERACTIVE DEMO SECTION ===== */
.demo {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-selector {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selector-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition);
    color: var(--text-muted);
}

.selector-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text);
}

.selector-btn.active {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
    color: white;
}

.selector-emoji {
    font-size: 28px;
    transition: var(--transition);
}

.selector-btn.active .selector-emoji {
    transform: scale(1.2);
}

.selector-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
}

/* Phone Mockup Frame inside Demo */
.demo-screen {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #1f2937;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Notch & speaker */
.phone-header {
    height: 24px;
    background: #000;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-speaker {
    width: 50px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.phone-camera {
    width: 6px;
    height: 6px;
    background: #1f2937;
    border-radius: 50%;
    margin-left: 8px;
}

/* Phone Content area */
.phone-content {
    flex: 1;
    background: #090e1a;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 13px;
    scroll-behavior: smooth;
}

/* Custom scrollbar inside phone mockup */
.phone-content::-webkit-scrollbar {
    width: 4px;
}
.phone-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.app-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.app-meme-hero {
    margin-top: 4px;
}

.app-meme-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    color: white;
}

.app-meme-meta {
    display: flex;
    gap: 8px;
}

.app-score-badge {
    padding: 3px 8px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    color: var(--pink);
}

.app-year-badge {
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 10px;
    color: var(--text-muted);
}

.app-content-sections {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 14px;
}

.app-card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.app-card-body {
    line-height: 1.5;
    color: #d1d5db;
}

/* Chat dialog simulator in phone */
.app-dialog-simulator {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0;
}

.msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    line-height: 1.4;
    font-size: 12px;
}

.msg.receiver {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

.msg.sender {
    background: var(--purple);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

/* ===== DOWNLOAD & FOOTER ===== */
.download {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.download-layout {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.download-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 16px;
}

.download-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 12px 28px;
    border-radius: var(--radius-md);
    background: black;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-large:hover {
    background: #111;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-small-label {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-muted);
}

.btn-large-label {
    font-size: 18px;
    font-weight: 700;
}

.android-coming-soon {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.coming-soon-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dim);
}

.coming-soon-sub {
    font-size: 11px;
    color: #4b5563;
}

/* Download section visual */
.download-app-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.big-app-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.icon-ring, .icon-ring-2 {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.icon-ring {
    width: 220px;
    height: 220px;
    animation: ringRotate 20s linear infinite;
}

.icon-ring-2 {
    width: 300px;
    height: 300px;
    animation: ringRotate 30s linear infinite reverse;
}

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

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== ENTRANCE ANIMATIONS (SCROLL) ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-selector {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .selector-btn {
        flex: 1;
        min-width: 180px;
        justify-content: center;
    }
    
    .download-layout {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .download-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .download-app-icon {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(3, 7, 18, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
    }
    
    .nav-menu {
        display: none; /* Mobile menu toggled by JS */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 7, 18, 0.95);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
        width: 24px;
        height: 24px;
        position: relative;
    }
    
    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text);
        position: absolute;
        transition: var(--transition);
        border-radius: 1px;
    }
    
    .nav-toggle span:nth-child(1) { top: 4px; }
    .nav-toggle span:nth-child(2) { top: 11px; }
    .nav-toggle span:nth-child(3) { top: 18px; }
    
    /* Toggle Active State */
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 11px; }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 11px; }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        justify-content: space-between;
        gap: 20px;
    }
}
