@import url('https://fonts.googleapis.com/css2?family=Anton&family=Orbitron:wght@400;700;900&family=Space+Grotesk:wght@400;700&display=swap');
        
        :root {
            --acid-green: #00ff00;
            --hot-pink: #ff00ff;
            --deep-purple: #1a0033;
            --neon-cyan: #00ffff;
            --dark-bg: #000000;
        }
        
        /* SCROLL FIX STARTS HERE */
        html {
            scroll-padding-top: 90px; /* Adjusts scroll position to account for fixed nav */
            scroll-behavior: smooth; /* Smooth scrolling effect */
        }
        /* SCROLL FIX ENDS HERE */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Orbitron', sans-serif;
            color: #fff;
            background-color: #000000;
            overflow-x: hidden;
            letter-spacing: 2px;
            position: relative;
        }
        
        /* Starfield Canvas Background */
        #starfield-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1; /* Behind everything */
            background: #000000; /* Fallback */
            pointer-events: none;
        }
        
        /* GLOW TEXT WITH RAINBOW GRADIENT */
        .glow-text {
            text-shadow:
                0 0 5px rgba(255, 0, 0, 0.5),
                0 0 10px rgba(255, 165, 0, 0.5),
                0 0 20px rgba(255, 255, 0, 0.5),
                0 0 40px rgba(0, 128, 0, 0.5),
                0 0 80px rgba(0, 0, 255, 0.5);
            background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff, #ff0000);
            background-size: 400% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 4px;
            animation: rainbowFlow 3s linear infinite, textFlicker 3s infinite;
            will-change: transform;
            transform: translateZ(0); /* GPU acceleration */
        }
        
        @keyframes rainbowFlow {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        
        @keyframes textFlicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
            52% { opacity: 1; }
            54% { opacity: 0.9; }
        }
        
        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        /* 3D Container Styling */
        #globe-container {
            /* Responsive sizing - scales with viewport but maintains consistent size */
            width: min(500px, 80vw);
            height: min(500px, 80vw);
            max-width: 500px;
            max-height: 500px;
            border-radius: 50%;
            overflow: hidden;
            background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
            position: relative;
            cursor: move;
            /* Center the container */
            margin: 0 auto;
            /* Force aspect ratio to stay circular */
            aspect-ratio: 1/1;
            /* Prevent layout shifts */
            flex-shrink: 0;
            /* Ensure container recalculates size on viewport changes */
            will-change: width, height;
            /* Force GPU acceleration */
            transform: translateZ(0);
        }
        
        /* Prevent Three.js canvas from expanding beyond container */
        #globe-container canvas {
            display: block;
            width: 100% !important;
            height: 100% !important;
            /* Ensure canvas properly resizes */
            min-width: 100%;
            min-height: 100%;
            /* Force GPU acceleration */
            transform: translateZ(0);
        }

        /* BUTTON STYLES */
        
        .btn-rainbow-wrapper {
            position: relative;
            display: inline-block;
            will-change: transform;
            transform: translateZ(0); /* GPU acceleration */
        }
        
        .btn-rainbow-wrapper::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff, #ff0000);
            background-size: 200% auto;
            border-radius: 9999px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
            animation: rainbowFlow 3s linear infinite;
        }
        
        .btn-rainbow-wrapper:hover::before {
            opacity: 1;
        }
        
        .btn-rainbow-hover {
            background: transparent !important;
            border: 2px solid white !important;
            color: white !important;
            background-image: none !important;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .btn-rainbow-wrapper:hover .btn-rainbow-hover {
            background-color: #000000 !important;
            border-color: transparent !important;
            transform: scale(1.02);
        }
        
        .btn-rainbow-wrapper:hover .btn-rainbow-hover span {
            background: linear-gradient(
                90deg,
                #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff, #ff0000
            ) !important;
            background-size: 400% 100% !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            animation: textGradientFlow 0.2s linear infinite !important;
            display: inline-block;
            position: relative;
        }
        
        .btn-rainbow-wrapper:hover .btn-rainbow-hover {
            animation: buttonPulse 0.4s ease-in-out !important;
            border-color: transparent !important;
            box-shadow: 
                0 0 25px rgba(255, 0, 255, 0.7),
                0 0 50px rgba(0, 255, 255, 0.5),
                0 0 75px rgba(255, 255, 0, 0.3),
                inset 0 0 25px rgba(255, 0, 255, 0.3) !important;
        }
        
        @keyframes buttonPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1.05); }
        }
        
        @keyframes textGradientFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }
        
        .btn-rainbow-wrapper .btn-rainbow-hover span {
            transition: all 0.3s ease;
            background: linear-gradient(90deg, #ffffff, #ffffff) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }
        
        /* CARD STYLES */
        .card-hover {
            background: rgba(0, 0, 0, 0.85) !important;
            border: 2px solid #fff !important;
            box-shadow: 
                0 0 20px rgba(0, 255, 0, 0.3),
                0 0 40px rgba(255, 0, 255, 0.2),
                inset 0 0 10px rgba(0, 255, 0, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 
                0 20px 40px rgba(0, 255, 0, 0.4),
                0 0 60px rgba(255, 0, 255, 0.3),
                inset 0 0 20px rgba(0, 255, 0, 0.2);
            border-color: var(--acid-green) !important;
        }
        
        .timeline-item > div {
            background: rgba(0, 0, 0, 0.9) !important;
            border: 2px solid #fff !important;
            box-shadow: 
                0 0 15px rgba(0, 255, 0, 0.4),
                0 0 30px rgba(255, 0, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .timeline-item > div:hover {
            transform: translateY(-5px) rotate(-1deg);
            border-color: var(--hot-pink) !important;
        }
        
        /* NAVIGATION */
        nav {
            background: rgba(0, 0, 0, 0.95) !important;
            border-bottom: none !important;
            position: relative;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 100;
        }
        
        .mobile-menu-btn span {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Mobile Navigation Menu */
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.98);
            padding: 1rem;
            border-top: 2px solid var(--acid-green);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        }
        
        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .mobile-nav a {
            padding: 0.75rem 1rem;
            font-size: 1.1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--acid-green);
        }
        
        nav::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff, #ff0000);
            background-size: 200% auto;
            animation: rainbowFlow 3s linear infinite;
        }
        
        .nav-link {
            position: relative;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        #home-link:hover {
            color: #FDF474 !important;
            text-shadow: 0 0 10px #FDF474 !important;
        }
        #roadmap-link:hover {
            color: #FDF474 !important;
            text-shadow: 0 0 10px #FDF474 !important;
        }
        #tokenomics-link:hover {
            color: #ff0000 !important;
            text-shadow: 0 0 10px #ff0000 !important;
        }
        
        /* NEW MISSION LINK HOVER */
        #mission-link:hover {
            color: #ff0000 !important;
            text-shadow: 0 0 10px #ff0000 !important;
        }
        
        /* LORE LINK HOVER */
        #lore-link:hover {
            color: #FDF474 !important;
            text-shadow: 0 0 10px #FDF474 !important;
        }

        /* CONTENT AND EVENTS LINK HOVERS */
        #content-link:hover {
            color: #ff0000 !important;
            text-shadow: 0 0 10px #ff0000 !important;
        }
        #burns-link:hover {
            color: #FDF474 !important;
            text-shadow: 0 0 10px #FDF474 !important;
        }

        /* FLOATING ANIMATION */
        .float {
            animation: float 4s ease-in-out infinite;
            will-change: transform;
            transform: translateZ(0); /* GPU acceleration */
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }
        
        /* FADE BOTTOM EFFECT */
        .fade-bottom {
            -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        }
        
        .text-green-400 { color: var(--acid-green) !important; text-shadow: 0 0 10px var(--acid-green); }
        .text-purple-400 { color: var(--hot-pink) !important; text-shadow: 0 0 10px var(--hot-pink); }
        .text-blue-400 { color: var(--neon-cyan) !important; text-shadow: 0 0 10px var(--neon-cyan); }
        .text-red-400 { color: #ff0000 !important; text-shadow: 0 0 10px #ff0000; }
        
        .font-space-grotesk {
            margin-top: 0 !important;
        }
        
        /* MISSION TITLE - Now using image instead of text styling */
        
        .border-purple-500\/30 { border-color: var(--hot-pink) !important; opacity: 0.5; }
        .border-green-500\/30 { border-color: var(--acid-green) !important; opacity: 0.5; }
        .border-blue-500\/30 { border-color: var(--neon-cyan) !important; opacity: 0.5; }
        
        nav span { letter-spacing: 5px; }
        
        @keyframes logoGlitch {
            0%, 90%, 100% { transform: translate(0); }
            92% { transform: translate(-3px, 1px); }
            94% { transform: translate(3px, -1px); }
            96% { transform: translate(-1px, 2px); }
            98% { transform: translate(2px, -2px); }
        }
        
        /* Logo hover gradient effect */
        .nav-logo {
            color: #ffffff;
            transition: all 0.3s ease;
        }
        
        .nav-logo:hover {
            background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #8b00ff, #ff0000);
            background-size: 400% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbowFlow 3s linear infinite;
        }
        
        .timeline-item::before {
            background: linear-gradient(180deg, var(--acid-green), var(--hot-pink), var(--neon-cyan)) !important;
            box-shadow: 0 0 10px var(--acid-green);
        }
        
                @media (max-width: 768px) {
                    body { letter-spacing: 1px; }
                    .hero-title { font-size: 2.5rem !important; }
                    
                    /* Globe section mobile adjustments */
                    #globe-container-wrapper {
                        min-height: 320px !important;
                    }
                    
                    /* Show mobile menu button */
                    .mobile-menu-btn {
                        display: flex;
                    }
                    
                    /* Hide desktop nav */
                    .hidden.md\\:flex {
                        display: none;
                    }
                    
                    /* Adjust nav for mobile */
                    nav .flex.items-center.justify-between {
                        padding: 0 1rem;
                    }
                    
                    /* Optimize animations for mobile */
                    .glow-text {
                        animation: textFlicker 3s infinite; /* Remove rainbow flow on mobile */
                    }
                    
                    .float {
                        animation: none; /* Disable floating on mobile for performance */
                    }
                    
                    /* Reduce box shadows on mobile */
                    .btn-rainbow-wrapper:hover .btn-rainbow-hover {
                        box-shadow:
                            0 0 15px rgba(255, 0, 255, 0.5),
                            0 0 25px rgba(0, 255, 255, 0.3) !important;
                    }
                    
                    /* Better touch targets */
                    .btn-rainbow-wrapper {
                        min-height: 48px;
                        min-width: 48px;
                    }
                    
                    .phase-content {
                        padding: 1.5rem;
                    }
                    
                    .token-detail-card {
                        padding: 1rem;
                    }
                }
                
                @media (max-width: 480px) {
                    /* Extra small mobile optimizations */
                    .hero-text-container h1 {
                        font-size: 2rem !important;
                    }
                    
                    .hero-text-container p {
                        font-size: 1rem;
                    }
                    
                    /* Smaller buttons on very small screens */
                    .btn-rainbow-wrapper {
                        min-height: 44px;
                    }
                    
                    .btn-rainbow-hover {
                        padding: 0.5rem 1rem !important;
                        font-size: 0.9rem !important;
                    }
                }
        
                /* --- NEW ROADMAP STYLES --- */

        .roadmap-container {
            position: relative;
            max-width: 5xl;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* The vertical line */
        .roadmap-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #FEF149;
            transform: translateX(-50%);
            box-shadow: 0 0 15px #FEF149, 0 0 30px rgba(254, 241, 73, 0.4);
            border-radius: 2px;
            z-index: 0;
        }

        .roadmap-phase {
            position: relative;
            margin-bottom: 4rem;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0; /* Hidden initially for animation */
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .roadmap-phase.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* The Dot on the line */
        .roadmap-dot {
            position: absolute;
            left: 50%;
            width: 24px;
            height: 24px;
            background: #000;
            border: 3px solid #fff;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 10;
            box-shadow: 0 0 15px #ffffff;
            transition: all 0.3s ease;
        }

        .roadmap-phase:hover .roadmap-dot {
            transform: translateX(-50%) scale(1.5);
        }
        
        /* Individual dot hover - all white */
        .roadmap-phase:nth-child(2):hover .roadmap-dot,
        .roadmap-phase:nth-child(3):hover .roadmap-dot,
        .roadmap-phase:nth-child(4):hover .roadmap-dot,
        .roadmap-phase:nth-child(5):hover .roadmap-dot {
            background: #ffffff;
            transform: translateX(-50%) scale(1.5);
            box-shadow: 0 0 25px #ffffff, 0 0 40px rgba(255, 255, 255, 0.4);
        }
        /* The Content Card */
        .phase-content {
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid #333;
            padding: 2rem;
            border-radius: 1rem;
            width: 45%;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(5px);
            will-change: transform, opacity;
            transform: translateZ(0); /* GPU acceleration */
        }

        .roadmap-phase:nth-child(odd) .phase-content {
            margin-right: auto;
            margin-left: 0;
            text-align: right;
        }

        .roadmap-phase:nth-child(even) .phase-content {
            margin-left: auto;
            margin-right: 0;
            text-align: left;
        }

       .roadmap-phase:hover .phase-content {
        border-color: #ffffff;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }
    
    /* All phases - white glow on hover */
    .roadmap-phase:nth-child(2):hover .phase-content,
    .roadmap-phase:nth-child(3):hover .phase-content,
    .roadmap-phase:nth-child(4):hover .phase-content,
    .roadmap-phase:nth-child(5):hover .phase-content {
        border-color: #ffffff !important;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4) !important;
    }

        /* Connector lines from dot to card */
        .phase-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 2px;
            background: #fff;
            z-index: -1;
        }

        .roadmap-phase:nth-child(odd) .phase-content::before {
            right: -20px;
        }

        .roadmap-phase:nth-child(even) .phase-content::before {
            left: -20px;
        }

        /* Task Items */
        .task-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: #ccc;
            font-family: 'Space Grotesk', sans-serif;
            transition: all 0.3s ease;
            cursor: default;
        }

        .task-item:hover {
            color: #fff;
            padding-left: 10px;
            text-shadow: 0 0 8px currentColor;
        }

        .check-icon {
            margin-right: 10px;
            color: #ffffff;
            flex-shrink: 0;
        }

        /* All check icons white */
        .roadmap-phase:nth-child(even) .check-icon,
        .roadmap-phase:nth-child(4) .check-icon,
        .roadmap-phase:nth-child(5) .check-icon {
            color: #ffffff;
        }

        /* Mobile Responsive for Roadmap */
        @media (max-width: 768px) {
            .roadmap-line {
                left: 20px;
            }
            
            .roadmap-dot {
                left: 20px;
            }
            
            .phase-content {
                width: calc(100% - 50px);
                margin-left: 50px !important;
                text-align: left !important;
            }

            .phase-content::before {
                left: -20px !important;
                width: 20px !important;
            }
        }

        /* Professional Roadmap Layout */
        #roadmap {
            isolation: isolate;
        }

        #roadmap::before {
            content: '';
            position: absolute;
            top: 8%;
            left: 50%;
            width: min(900px, 90vw);
            height: 440px;
            background: radial-gradient(circle, rgba(0, 255, 80, 0.045), transparent 68%);
            transform: translateX(-50%);
            pointer-events: none;
            z-index: -1;
        }

        .roadmap-section-header {
            max-width: 820px;
            margin: 0 auto 3.5rem;
            text-align: center;
        }

        .roadmap-section-eyebrow {
            margin-bottom: 0.8rem;
            color: rgba(134, 255, 151, 0.78);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .roadmap-title-image {
            width: 100%;
            max-width: 720px;
            height: auto;
            margin: 0 auto;
            object-fit: contain;
            filter: drop-shadow(0 8px 22px rgba(0, 255, 80, 0.13));
        }

        .roadmap-section-description {
            max-width: 620px;
            margin: 1.25rem auto 0;
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            line-height: 1.65;
        }

        .roadmap-modern {
            position: relative;
            max-width: 1000px;
            padding: 1.5rem;
            margin: 0 auto;
            background: linear-gradient(145deg, rgba(12, 12, 12, 0.94), rgba(5, 5, 5, 0.94));
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 18px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
            backdrop-filter: blur(14px);
        }

        .roadmap-modern::before {
            content: '';
            position: absolute;
            top: 3rem;
            bottom: 3rem;
            left: 56px;
            width: 1px;
            background: linear-gradient(to bottom, #69d77c, rgba(255, 255, 255, 0.14) 38%, rgba(255, 255, 255, 0.08));
        }

        .roadmap-modern-phase.roadmap-phase {
            display: grid;
            grid-template-columns: 64px minmax(0, 1fr);
            align-items: start;
            width: 100%;
            margin: 0;
            padding: 0.5rem 0;
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

        .roadmap-modern-phase.roadmap-phase.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .roadmap-modern-marker {
            position: relative;
            display: flex;
            justify-content: center;
            padding-top: 1.45rem;
            z-index: 1;
        }

        .roadmap-modern-dot {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.5);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
        }

        .roadmap-modern-phase.is-complete .roadmap-modern-dot {
            background: #69d77c;
            border-color: #69d77c;
            color: #071109;
            box-shadow: 0 0 0 4px rgba(105, 215, 124, 0.08);
        }

        .roadmap-modern-phase.is-active .roadmap-modern-dot {
            border-color: #69d77c;
            color: #8eef9f;
            box-shadow: 0 0 0 4px rgba(105, 215, 124, 0.08);
        }

        .roadmap-modern-card {
            padding: 1.4rem 1.5rem;
            background: rgba(255, 255, 255, 0.018);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 11px;
            transition: background 0.2s ease, border-color 0.2s ease;
        }

        .roadmap-modern-phase:not(:last-child) .roadmap-modern-card {
            margin-bottom: 0.75rem;
        }

        .roadmap-modern-card:hover {
            background: rgba(255, 255, 255, 0.032);
            border-color: rgba(134, 255, 151, 0.2);
        }

        .roadmap-modern-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .roadmap-modern-title {
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .roadmap-modern-status {
            flex-shrink: 0;
            padding: 0.35rem 0.6rem;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.46);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .roadmap-modern-status.active {
            background: rgba(105, 215, 124, 0.08);
            border-color: rgba(105, 215, 124, 0.28);
            color: #8eef9f;
        }

        .roadmap-modern-status.completed {
            background: #69d77c;
            border-color: #69d77c;
            color: #071109;
        }

        .roadmap-modern-tasks {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.65rem 1rem;
        }

        .roadmap-modern-task {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            color: rgba(255, 255, 255, 0.58);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.88rem;
            line-height: 1.4;
        }

        .roadmap-modern-task::before {
            content: '';
            width: 6px;
            height: 6px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
        }

        .roadmap-modern-task.complete {
            color: rgba(255, 255, 255, 0.82);
        }

        .roadmap-modern-task.complete::before {
            background: #69d77c;
            box-shadow: 0 0 0 3px rgba(105, 215, 124, 0.09);
        }

        @media (max-width: 640px) {
            .roadmap-section-header {
                margin-bottom: 2.5rem;
            }

            .roadmap-modern {
                padding: 0.75rem;
            }

            .roadmap-modern::before {
                left: 35px;
            }

            .roadmap-modern-phase.roadmap-phase {
                grid-template-columns: 48px minmax(0, 1fr);
            }

            .roadmap-modern-card {
                padding: 1.15rem;
            }

            .roadmap-modern-card-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 0.65rem;
            }

            .roadmap-modern-tasks {
                grid-template-columns: 1fr;
            }
        }

        /* --- MODIFIED HERO SECTION STYLES --- */
        
        /* Increased vertical padding for hero section to allow more "breathing room" and moving content higher */
        #home {
            padding-top: 8rem; /* More top padding */
            padding-bottom: 5rem;
            min-height: 90vh; /* Slightly shorter than full screen to pull next section up */
        }

        /* Hero Layout Tweaks */
        .hero-content-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Align to top */
            height: 100%;
        }

        /* Specific adjustments to make text/image bigger and closer */
        .hero-text-container h1 {
            font-size: 4.5rem; /* Larger Title */
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-text-container p {
            font-size: 1.35rem; /* Larger Description Text */
            max-width: 600px;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        /* Adjusting GIF size */
        .hero-gif-container img {
            width: 100%;
            max-width: 450px; /* Larger GIF */
            height: auto;
        }

        /* 3D Globe adjustments */
        #globe-container-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Prevent layout shifts */
            overflow: hidden;
            /* Ensure wrapper responds to viewport changes */
            will-change: transform, width, height;
            /* Force GPU acceleration */
            transform: translateZ(0);
            /* Force wrapper to recalculate size */
            min-width: 0;
            min-height: 0;
        }
        
        /* Globe container is already styled above with fixed dimensions */

        /* About Section Adjustments - INCREASED GAP */
        #mission {
            /* Changed from py-12 lg:py-16 to py-24 lg:py-32 */
            padding-top: 6rem;
            padding-bottom: 8rem;
        }

        /* Container to hold image and text tightly */





        .about-content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem; /* Smaller gap between image and text */
        }

        /* About Image scaling */
        .about-image img {
            width: 100%;
            max-width: 970px; /* Much larger image */
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto; /* Center image */
        }

        .about-text {
            font-size: 1.5rem; /* Bigger text */
            margin-top: 0 !important; /* Remove top margin to pull text up */
            text-align: center;
            max-width: 800px;
        }

        /* Mobile Overrides */
        @media (max-width: 1024px) {
            .hero-text-container h1 {
                font-size: 3.5rem;
            }
            .hero-gif-container img {
                max-width: 350px;
            }
            #mission {
                padding-top: 4rem;
                padding-bottom: 6rem;
            }
            .about-text {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            #home {
                padding-top: 6rem;
                padding-bottom: 1rem;
            }
            .hero-text-container h1 {
                font-size: 2.8rem;
            }
            .hero-text-container p {
                font-size: 1.1rem;
            }
            .about-text {
                font-size: 1.1rem;
            }
            .about-image img {
                max-width: 90vw;
            }
            
            /* Make GIF smaller on mobile */
            .hero-gif-container img {
                max-width: 280px !important;
            }
            
            /* Mobile globe - responsive sizing */
            #globe-container {
                width: min(320px, 80vw);
                height: min(320px, 80vw);
                max-width: 320px;
                max-height: 320px;
                /* Ensure container recalculates size on viewport changes */
                will-change: width, height;
                /* Force GPU acceleration */
                transform: translateZ(0);
            }
            #globe-container-wrapper {
                height: auto !important;
                min-height: 340px !important;
            }
        }

        @media (max-width: 480px) {
            /* Make GIF even smaller on very small screens */
            .hero-gif-container img {
                max-width: 220px !important;
            }
            
            /* Very small mobile globe - responsive sizing */
            #globe-container {
                width: min(280px, 80vw);
                height: min(280px, 80vw);
                max-width: 280px;
                max-height: 280px;
                /* Ensure container recalculates size on viewport changes */
                will-change: width, height;
                /* Force GPU acceleration */
                transform: translateZ(0);
            }
            #globe-container-wrapper {
                height: auto !important;
                min-height: 300px !important;
            }
        }
        
        @media (max-width: 380px) {
            /* Extra small mobile globe - responsive sizing */
            #globe-container {
                width: min(240px, 80vw);
                height: min(240px, 80vw);
                max-width: 240px;
                max-height: 240px;
                /* Ensure container recalculates size on viewport changes */
                will-change: width, height;
                /* Force GPU acceleration */
                transform: translateZ(0);
            }
            #globe-container-wrapper {
                height: auto !important;
                min-height: 260px !important;
            }
        }

        /* Professional Mission Layout */
        #mission {
            isolation: isolate;
        }

        #mission::before {
            content: '';
            position: absolute;
            top: 8%;
            left: 50%;
            width: min(900px, 90vw);
            height: 440px;
            background: radial-gradient(circle, rgba(234, 43, 29, 0.055), transparent 68%);
            transform: translateX(-50%);
            pointer-events: none;
            z-index: -1;
        }

        .mission-section-header {
            max-width: 900px;
            margin: 0 auto 3.5rem;
            text-align: center;
        }

        .mission-section-eyebrow {
            margin-bottom: 0.8rem;
            color: rgba(253, 244, 116, 0.78);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .mission-title-image {
            width: 100%;
            max-width: 880px;
            height: auto;
            margin: 0 auto;
            object-fit: contain;
            filter: drop-shadow(0 8px 22px rgba(234, 43, 29, 0.14));
        }

        .mission-section-title {
            margin: 0;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.25rem, 6vw, 4.5rem);
            font-weight: 900;
            letter-spacing: 0.04em;
            line-height: 1.02;
            text-transform: uppercase;
        }

        .mission-section-title span {
            display: block;
            margin-top: 0.3rem;
            color: #FDF474;
            font-size: 0.62em;
            letter-spacing: 0.24em;
        }

        .mission-section-description {
            max-width: 620px;
            margin: 1.25rem auto 0;
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            line-height: 1.65;
        }

        .mission-panel {
            display: grid;
            grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
            max-width: 1050px;
            margin: 0 auto;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(12, 12, 12, 0.94), rgba(5, 5, 5, 0.94));
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 18px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
            backdrop-filter: blur(14px);
            text-align: left;
        }

        .mission-directive {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 360px;
            padding: 3rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
            border-right: 1px solid rgba(255, 255, 255, 0.09);
        }

        .mission-directive-label {
            color: rgba(253, 244, 116, 0.72);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .mission-directive h2 {
            margin: 0.8rem 0 1rem;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 3.25rem);
            font-weight: 800;
            line-height: 1.08;
        }

        .mission-directive p {
            color: rgba(255, 255, 255, 0.58);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .mission-mantra {
            padding-top: 1.5rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #FDF474;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            line-height: 1.7;
            text-transform: uppercase;
        }

        .mission-content {
            padding: 3rem;
        }

        .mission-content-lead {
            color: rgba(255, 255, 255, 0.84);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.08rem;
            line-height: 1.75;
        }

        .mission-content-copy {
            margin-top: 1.25rem;
            color: rgba(255, 255, 255, 0.56);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            line-height: 1.75;
        }

        .mission-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.65rem;
            margin: 2rem 0;
        }

        .mission-pillar {
            padding: 1rem 0.75rem;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 8px;
            text-align: center;
        }

        .mission-pillar strong {
            display: block;
            margin-bottom: 0.3rem;
            color: rgba(255, 255, 255, 0.86);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .mission-pillar span {
            color: rgba(255, 255, 255, 0.44);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.76rem;
        }

        .mission-closing {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.09);
            color: rgba(255, 255, 255, 0.72);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-style: italic;
            line-height: 1.65;
        }

        @media (max-width: 800px) {
            .mission-panel {
                grid-template-columns: 1fr;
            }

            .mission-directive {
                min-height: auto;
                border-right: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.09);
            }
        }

        @media (max-width: 600px) {
            .mission-section-header {
                margin-bottom: 2.5rem;
            }

            .mission-directive,
            .mission-content {
                padding: 2rem 1.25rem;
            }

            .mission-pillars {
                grid-template-columns: 1fr;
            }
        }

        /* =========================================
           NEW TOKENOMICS STYLES (HYPNOTOAD THEME)
           ========================================= */
        
        #tokenomics {
            padding: 100px 0;
            position: relative;
        }

        /* The Hypnotic Chart */
        .hypno-chart-container {
            position: relative;
            width: 300px;
            height: 300px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .hypno-pie {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            /* Base conic gradient for pie structure */
            background: conic-gradient(
                #801D14 0% 96%,
                #FDF474 96% 100%
            );
            position: relative;
            /* 3D effect with multiple shadows and depth */
            box-shadow:
                0 0 20px rgba(234, 43, 29, 0.3),
                0 0 40px rgba(234, 43, 29, 0.2),
                inset 0 0 20px rgba(0, 0, 0, 0.8),
                0 15px 35px rgba(0, 0, 0, 0.5),
                0 5px 15px rgba(0, 0, 0, 0.3),
                inset 0 -5px 20px rgba(0, 0, 0, 0.4),
                inset 0 5px 20px rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            cursor: pointer;
            transform-style: preserve-3d;
        }

        /* 3D side/thickness effect */
        .hypno-pie::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #6a1510 0% 96%,
                #d4c45a 96% 100%
            );
            transform: translateZ(-10px) scale(0.95);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        /* Top highlight for 3D effect */
        .hypno-pie-highlight {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
        }

        /* Radial gradient overlay for majority piece */
        .hypno-pie::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at center, #E93221 0%, transparent 70%);
            -webkit-mask: conic-gradient(
                black 0% 96%,
                transparent 96% 100%
            );
            mask: conic-gradient(
                black 0% 96%,
                transparent 96% 100%
            );
            pointer-events: none;
        }

        .hypno-pie:hover {
            box-shadow:
                0 0 30px rgba(234, 43, 29, 0.6),
                0 0 60px rgba(255, 0, 0, 0.5),
                0 0 90px rgba(200, 0, 0, 0.4),
                inset 0 0 20px rgba(0, 0, 0, 0.8);
            transform: scale(1.05);
        }

        /* "Eyes" overlay */
        .hypno-eyes {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            display: flex;
            gap: 20px;
            pointer-events: none;
        }

        .eye {
            width: 30px;
            height: 50px;
            border: 3px solid #FDF474;
            border-radius: 50%;
            background: radial-gradient(circle, #fff 10%, #FDF474 20%, #000 60%);
            box-shadow: 0 0 15px #FDF474;
            animation: eye-pulse 3s ease-in-out infinite;
        }

        @keyframes hypnotic-spin {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.02); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes eye-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 15px #FDF474; }
            50% { transform: scale(1.1); box-shadow: 0 0 30px #EA2B1D; }
        }

        /* Token Details Cards */
        .token-detail-card {
            background: rgba(0,0,0,0.7);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            will-change: transform;
            transform: translateZ(0); /* GPU acceleration */
        }

        .token-detail-card:hover {
            border-color: #EA2B1D;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px -10px rgba(234,43,29,0.3);
        }

        .token-detail-card::before {
            display: none;
        }

        /* Dev card specific styling - yellow border */
        .token-detail-card.liquidity:hover {
            border-color: #FDF474 !important;
            box-shadow: 0 10px 30px -10px rgba(253, 244, 116, 0.3);
        }

        /* Decentralization card - red gradient border and glow */
        .token-detail-card.decentralization-card:hover {
            border-color: #EA2B1D !important;
            box-shadow: 0 10px 30px -10px rgba(234, 43, 29, 0.5);
        }

        .arrow-anim {
            display: inline-block;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .token-detail-card:hover .arrow-anim {
            opacity: 1;
            animation: move-arrow 1.5s infinite;
        }

        @keyframes move-arrow {
            0% { transform: translateX(0); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(10px); opacity: 0; }
        }

        /* Professional Tokenomics Layout */
        #tokenomics {
            isolation: isolate;
        }

        #tokenomics::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 50%;
            width: min(900px, 90vw);
            height: 440px;
            background: radial-gradient(circle, rgba(234, 43, 29, 0.055), transparent 68%);
            transform: translateX(-50%);
            pointer-events: none;
            z-index: -1;
        }

        .tokenomics-section-header {
            max-width: 780px;
            margin: 0 auto 3.5rem;
            text-align: center;
        }

        .tokenomics-section-eyebrow {
            margin-bottom: 0.8rem;
            color: rgba(253, 244, 116, 0.78);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .tokenomics-title-image {
            width: 100%;
            max-width: 650px;
            height: auto;
            margin: 0 auto;
            object-fit: contain;
            filter: drop-shadow(0 8px 22px rgba(253, 244, 116, 0.14));
        }

        .tokenomics-section-description {
            max-width: 620px;
            margin: 1.25rem auto 0;
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            line-height: 1.65;
        }

        .tokenomics-panel {
            display: grid;
            grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
            max-width: 1100px;
            margin: 0 auto;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(12, 12, 12, 0.94), rgba(5, 5, 5, 0.94));
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 18px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
            backdrop-filter: blur(14px);
        }

        .tokenomics-allocation {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            border-right: 1px solid rgba(255, 255, 255, 0.09);
        }

        .tokenomics-chart {
            position: relative;
            width: min(270px, 70vw);
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
            background: #080808;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow:
                0 24px 55px rgba(0, 0, 0, 0.52),
                0 0 0 6px rgba(255, 255, 255, 0.018),
                inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        }

        .tokenomics-chart-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .tokenomics-chart-segment {
            fill: none;
            stroke-width: 18;
            stroke-linecap: butt;
            transform: rotate(-90deg);
            transform-origin: 60px 60px;
            shape-rendering: geometricPrecision;
        }

        .tokenomics-chart-track {
            stroke: rgba(255, 255, 255, 0.035);
        }

        .tokenomics-chart-community {
            stroke: #92670E;
            stroke-dasharray: 61.1 38.9;
        }

        .tokenomics-chart-airdrop {
            stroke: #4B3800;
            stroke-dasharray: 32 68;
            stroke-dashoffset: -61.1;
        }

        .tokenomics-chart-development {
            stroke: rgba(255, 255, 255, 0.16);
            stroke-dasharray: 6.9 93.1;
            stroke-dashoffset: -93.1;
        }

        .tokenomics-chart::before {
            content: '';
            position: absolute;
            inset: 17.5%;
            background: radial-gradient(circle at 42% 35%, #141414 0%, #090909 62%, #060606 100%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            box-shadow:
                0 10px 28px rgba(0, 0, 0, 0.46),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            z-index: 1;
        }

        .tokenomics-chart-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .tokenomics-chart-value {
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.45rem;
            font-weight: 800;
        }

        .tokenomics-chart-label {
            margin-top: 0.25rem;
            color: rgba(255, 255, 255, 0.42);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .tokenomics-legend {
            width: 100%;
            max-width: 320px;
            margin-top: 2rem;
        }

        .tokenomics-legend-row {
            display: grid;
            grid-template-columns: 12px 1fr auto;
            align-items: center;
            gap: 0.75rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-family: 'Space Grotesk', sans-serif;
        }

        .tokenomics-legend-row:last-child {
            border-bottom: 0;
        }

        .tokenomics-legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .tokenomics-legend-name {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.85rem;
        }

        .tokenomics-legend-value {
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .tokenomics-details {
            padding: 3rem;
        }

        .tokenomics-details-eyebrow {
            color: #FDF474;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .tokenomics-details-title {
            margin: 0.5rem 0 0.9rem;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.45rem, 3vw, 2.15rem);
            font-weight: 800;
            line-height: 1.25;
        }

        .tokenomics-details-copy {
            color: rgba(255, 255, 255, 0.62);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .tokenomics-airdrop-callout {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1rem;
            align-items: center;
            margin-top: 0.75rem;
            padding: 1.15rem 1.25rem;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

        .tokenomics-airdrop-callout:hover {
            background: rgba(253, 244, 116, 0.035);
            border-color: rgba(253, 244, 116, 0.24);
            box-shadow: 0 0 24px rgba(253, 244, 116, 0.08);
        }

        .tokenomics-airdrop-stat {
            min-width: 88px;
            color: #FDF474;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            line-height: 1;
            text-align: center;
        }

        .tokenomics-airdrop-stat span {
            display: block;
            margin-top: 0.35rem;
            color: rgba(255, 255, 255, 0.48);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .tokenomics-airdrop-copy h3 {
            margin-bottom: 0.25rem;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.84rem;
            font-weight: 700;
        }

        .tokenomics-airdrop-copy p {
            color: rgba(255, 255, 255, 0.58);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            line-height: 1.5;
        }

        .tokenomics-trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.65rem;
            margin: 1.75rem 0;
        }

        .tokenomics-trust-item {
            padding: 0.85rem 0.75rem;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.72);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-align: center;
            text-transform: uppercase;
        }

        .tokenomics-principles {
            display: grid;
            gap: 0.75rem;
        }

        .tokenomics-principle {
            padding: 1.15rem 1.25rem;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .tokenomics-principle:hover {
            background: rgba(253, 244, 116, 0.035);
            border-color: rgba(253, 244, 116, 0.24);
        }

        .tokenomics-principle h3 {
            margin-bottom: 0.4rem;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
        }

        .tokenomics-principle p {
            color: rgba(255, 255, 255, 0.52);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.86rem;
            line-height: 1.55;
        }

        .tokenomics-governance {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            padding-top: 1.35rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.09);
            font-family: 'Space Grotesk', sans-serif;
        }

        .tokenomics-governance span:first-child {
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .tokenomics-governance span:last-child {
            color: #FDF474;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        @media (max-width: 900px) {
            .tokenomics-panel {
                grid-template-columns: 1fr;
            }

            .tokenomics-allocation {
                border-right: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.09);
            }
        }

        @media (max-width: 600px) {
            .tokenomics-section-header {
                margin-bottom: 2.5rem;
            }

            .tokenomics-allocation,
            .tokenomics-details {
                padding: 2rem 1.25rem;
            }

            .tokenomics-trust-grid {
                grid-template-columns: 1fr;
            }

            .tokenomics-governance {
                align-items: flex-start;
                flex-direction: column;
            }

            .tokenomics-airdrop-callout {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* =========================================
           FLOATING AUDIO WIDGET (GLASSMORPHISM)
           ========================================= */
        
        .audio-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            font-family: 'Orbitron', sans-serif;
        }
        
        .widget-toggle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow:
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .widget-toggle:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.05);
            box-shadow:
                0 0 15px rgba(234, 43, 29, 0.5),
                0 0 30px rgba(234, 43, 29, 0.3);
        }
        
        .widget-toggle:hover .widget-toggle-icon {
            text-shadow: 0 0 10px #EA2B1D;
        }
        
        .widget-toggle-icon {
            font-size: 1.5rem;
            color: #EA2B1D;
            text-shadow: none;
            transition: text-shadow 0.3s ease;
        }
        
        .widget-content {
            position: absolute;
            bottom: 60px;
            right: 0;
            width: 280px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .widget-content.expanded {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(234, 43, 29, 0.3),
                0 0 40px rgba(234, 43, 29, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .widget-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .widget-title {
            font-size: 0.75rem;
            color: #FDF474;
            text-shadow: 0 0 5px #FDF474;
            letter-spacing: 2px;
        }
        
        .widget-close {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.2s ease;
        }
        
        .widget-close:hover {
            background: rgba(255, 0, 0, 0.2);
        }
        
        .widget-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .widget-play-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #EA2B1D;
            border: none;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(234, 43, 29, 0.3);
            flex-shrink: 0;
        }
        
        .widget-play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(234, 43, 29, 0.5);
        }
        
        .widget-volume-container {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .widget-volume-container:hover {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(253, 244, 116, 0.15);
            transform: translateY(-2px);
        }
        
        .widget-mute-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: transparent;
            border: none;
            color: #FDF474;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
        
        .widget-mute-btn:hover {
            background: rgba(253, 244, 116, 0.2);
            transform: scale(1.15);
            text-shadow: 0 0 10px #FDF474;
        }
        
        .widget-mute-btn:active {
            transform: scale(0.95);
        }
        
        .widget-volume-slider {
            flex: 1;
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
            outline: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .widget-volume-slider:hover {
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .widget-volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            box-shadow: none;
            transition: all 0.2s ease;
            opacity: 0;
            transform: translateY(-2px);
        }
        
        .widget-volume-slider:hover::-webkit-slider-thumb {
            width: 20px;
            height: 20px;
            background: #EA2B1D;
            box-shadow: 0 0 12px #EA2B1D, 0 0 20px rgba(234, 43, 29, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
            transform: translateY(-4px) scale(1.2);
            opacity: 1;
        }
        
        .widget-volume-slider::-moz-range-thumb {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            border: none;
            box-shadow: none;
            transition: all 0.2s ease;
            opacity: 0;
            transform: translateY(-2px);
        }
        
        .widget-volume-slider:hover::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #EA2B1D;
            box-shadow: 0 0 12px #EA2B1D, 0 0 20px rgba(234, 43, 29, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
            transform: translateY(-4px) scale(1.2);
            opacity: 1;
        }
        
        .widget-volume-slider::-webkit-slider-runnable-track {
            background: linear-gradient(90deg, #FDF474 0%, #FDF474 var(--volume-percent, 80%), rgba(255, 255, 255, 0.15) var(--volume-percent, 80%), rgba(255, 255, 255, 0.15) 100%);
            border-radius: 3px;
            height: 6px;
            transition: all 0.3s ease;
        }
        
        .widget-volume-slider:hover::-webkit-slider-runnable-track {
            height: 8px;
        }
        
        .widget-volume-slider::-moz-range-track {
            background: linear-gradient(90deg, #FDF474 0%, #FDF474 var(--volume-percent, 80%), rgba(255, 255, 255, 0.15) var(--volume-percent, 80%), rgba(255, 255, 255, 0.15) 100%);
            border-radius: 3px;
            height: 6px;
        }
        
        .widget-volume-slider:hover::-moz-range-track {
            height: 8px;
        }
        
        .widget-tracks {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .widget-track-btn {
            padding: 8px 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .widget-track-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #FDF474;
            transform: translateX(-2px);
        }
        
        .widget-track-btn.active {
            background: rgba(253, 244, 116, 0.2);
            border-color: #EA2B1D;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .audio-widget {
                bottom: 15px;
                right: 15px;
            }
            
            .widget-content {
                width: 260px;
                bottom: 55px;
                right: 0;
            }
            
            .widget-toggle {
                width: 48px;
                height: 48px;
            }
            
            .widget-toggle-icon {
                font-size: 1.3rem;
            }
            
            .widget-play-btn {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
            
            .widget-mute-btn {
                width: 26px;
                height: 26px;
                font-size: 0.9rem;
            }
            
            .widget-track-btn {
                font-size: 0.7rem;
                padding: 7px 10px;
            }
            
            /* Reduce glow effects on mobile for better performance */
            .widget-toggle:hover {
                box-shadow:
                    0 0 10px rgba(234, 43, 29, 0.3),
                    0 0 20px rgba(234, 43, 29, 0.2);
            }
            
            .widget-content.expanded {
                box-shadow:
                    0 8px 32px rgba(0, 0, 0, 0.4),
                    0 0 15px rgba(234, 43, 29, 0.2),
                    0 0 30px rgba(234, 43, 29, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
            
            .widget-volume-slider:hover::-webkit-slider-thumb,
            .widget-volume-slider:hover::-moz-range-thumb {
                box-shadow: 0 0 8px #EA2B1D, 0 0 15px rgba(234, 43, 29, 0.3);
            }
        }
        
        @media (max-width: 480px) {
            .audio-widget {
                bottom: 10px;
                right: 10px;
            }
            
            .widget-content {
                width: 240px;
                bottom: 50px;
                right: 0;
            }
            
            .widget-toggle {
                width: 44px;
                height: 44px;
            }
            
            .widget-toggle-icon {
                font-size: 1.2rem;
            }
            
            .widget-header {
                margin-bottom: 10px;
                padding-bottom: 10px;
            }
            
            .widget-title {
                font-size: 0.7rem;
            }
            
            .widget-play-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .widget-mute-btn {
                width: 24px;
                height: 24px;
                font-size: 0.85rem;
            }
            
            .widget-volume-container {
                padding: 5px 8px;
            }
            
            .widget-volume-slider {
                height: 4px;
            }
            
            .widget-volume-slider::-webkit-slider-runnable-track,
            .widget-volume-slider::-moz-range-track {
                height: 4px;
            }
            
            .widget-volume-slider:hover::-webkit-slider-runnable-track,
            .widget-volume-slider:hover::-moz-range-track {
                height: 5px;
            }
            
            .widget-volume-slider:hover::-webkit-slider-thumb,
            .widget-volume-slider:hover::-moz-range-thumb {
                width: 18px;
                height: 18px;
                transform: translateY(-3px) scale(1.1);
            }
            
            .widget-track-btn {
                font-size: 0.65rem;
                padding: 6px 8px;
            }
            
            /* Minimal glow on very small screens */
            .widget-toggle:hover {
                box-shadow:
                    0 0 8px rgba(234, 43, 29, 0.2),
                    0 0 15px rgba(234, 43, 29, 0.1);
            }
            
            .widget-content.expanded {
                box-shadow:
                    0 8px 32px rgba(0, 0, 0, 0.4),
                    0 0 10px rgba(234, 43, 29, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
        }
        
        @media (max-width: 380px) {
            .audio-widget {
                bottom: 8px;
                right: 8px;
            }
            
            .widget-content {
                width: 220px;
                bottom: 48px;
                padding: 12px;
            }
            
            .widget-toggle {
                width: 42px;
                height: 42px;
            }
            
            .widget-toggle-icon {
                font-size: 1.1rem;
            }
            
            .widget-play-btn {
                width: 38px;
                height: 38px;
                font-size: 0.95rem;
            }
            
            .widget-track-btn {
                font-size: 0.6rem;
                padding: 5px 7px;
            }
        }

        /* Professional Audio Mini Player */
        .audio-widget {
            bottom: 18px;
            right: 18px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .widget-toggle {
            width: 48px;
            height: 48px;
            background: rgba(8, 8, 8, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 14px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
            color: rgba(255, 255, 255, 0.78);
        }

        .widget-toggle:hover {
            background: #101010;
            border-color: rgba(253, 244, 116, 0.42);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
            transform: translateY(-2px);
        }

        .widget-toggle-icon {
            display: flex;
            color: currentColor;
            text-shadow: none;
        }

        .widget-toggle-icon svg {
            width: 20px;
            height: 20px;
        }

        .widget-toggle:hover .widget-toggle-icon {
            color: #FDF474;
            text-shadow: none;
        }

        .widget-content {
            bottom: 60px;
            width: 330px;
            padding: 0;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(14, 14, 14, 0.98), rgba(5, 5, 5, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: 16px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52);
            backdrop-filter: blur(18px);
            transform: translateY(8px) scale(0.98);
            transform-origin: bottom right;
        }

        .widget-content.expanded {
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52);
            transform: translateY(0) scale(1);
        }

        .widget-header {
            padding: 1rem 1rem 0.85rem;
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .widget-heading {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .widget-title {
            color: rgba(255, 255, 255, 0.88);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-shadow: none;
            text-transform: uppercase;
        }

        .widget-subtitle {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .widget-close {
            width: 28px;
            height: 28px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
        }

        .widget-close:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .widget-now-playing {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.018);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .widget-signal {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 2px;
            width: 42px;
            height: 42px;
            padding: 11px 10px;
            flex-shrink: 0;
            background: rgba(253, 244, 116, 0.06);
            border: 1px solid rgba(253, 244, 116, 0.16);
            border-radius: 10px;
        }

        .widget-signal span {
            width: 3px;
            height: 35%;
            background: #FDF474;
            border-radius: 999px;
            opacity: 0.5;
        }

        .audio-widget.is-playing .widget-signal span {
            animation: widgetSignal 0.8s ease-in-out infinite alternate;
        }

        .audio-widget.is-playing .widget-signal span:nth-child(2) {
            animation-delay: -0.4s;
        }

        .audio-widget.is-playing .widget-signal span:nth-child(3) {
            animation-delay: -0.2s;
        }

        .audio-widget.is-playing .widget-signal span:nth-child(4) {
            animation-delay: -0.6s;
        }

        @keyframes widgetSignal {
            from { height: 30%; opacity: 0.45; }
            to { height: 100%; opacity: 1; }
        }

        .widget-track-meta {
            min-width: 0;
        }

        .widget-now-label {
            display: block;
            margin-bottom: 0.25rem;
            color: rgba(255, 255, 255, 0.34);
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .widget-track-name {
            display: block;
            overflow: hidden;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .widget-controls {
            gap: 0.75rem;
            padding: 1rem;
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .widget-play-btn {
            width: 42px;
            height: 42px;
            background: #FDF474;
            color: #090909;
            box-shadow: none;
            font-size: 0.85rem;
        }

        .widget-play-btn:hover {
            background: #fff58c;
            box-shadow: none;
            transform: scale(1.04);
        }

        .widget-volume-container {
            padding: 0.55rem 0.7rem;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 9px;
        }

        .widget-volume-container:hover {
            background: rgba(255, 255, 255, 0.045);
            box-shadow: none;
            transform: none;
        }

        .widget-mute-btn {
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.85rem;
        }

        .widget-mute-btn:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            text-shadow: none;
            transform: none;
        }

        .widget-volume-slider,
        .widget-volume-slider:hover {
            height: 4px;
        }

        .widget-volume-slider::-webkit-slider-runnable-track,
        .widget-volume-slider:hover::-webkit-slider-runnable-track {
            height: 4px;
            background: linear-gradient(90deg, #FDF474 0%, #FDF474 var(--volume-percent, 50%), rgba(255, 255, 255, 0.13) var(--volume-percent, 50%), rgba(255, 255, 255, 0.13) 100%);
        }

        .widget-volume-slider::-webkit-slider-thumb,
        .widget-volume-slider:hover::-webkit-slider-thumb {
            width: 12px;
            height: 12px;
            margin-top: -2px;
            background: #fff;
            box-shadow: none;
            opacity: 1;
            transform: none;
        }

        .widget-volume-slider::-moz-range-track,
        .widget-volume-slider:hover::-moz-range-track {
            height: 4px;
        }

        .widget-volume-slider::-moz-range-thumb,
        .widget-volume-slider:hover::-moz-range-thumb {
            width: 12px;
            height: 12px;
            background: #fff;
            box-shadow: none;
            opacity: 1;
            transform: none;
        }

        .widget-tracks {
            gap: 0;
            padding: 0.5rem;
        }

        .widget-track-btn {
            display: grid;
            grid-template-columns: 28px minmax(0, 1fr);
            align-items: center;
            padding: 0.7rem 0.75rem;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.78rem;
        }

        .widget-track-index {
            color: rgba(255, 255, 255, 0.26);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.6rem;
        }

        .widget-track-btn:hover {
            background: rgba(255, 255, 255, 0.035);
            border-color: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.85);
            transform: none;
        }

        .widget-track-btn.active {
            background: rgba(253, 244, 116, 0.055);
            border-color: rgba(253, 244, 116, 0.16);
            color: #fff;
        }

        .widget-track-btn.active .widget-track-index {
            color: #FDF474;
        }

        @media (max-width: 480px) {
            .audio-widget {
                right: 12px;
                bottom: 12px;
            }

            .widget-content {
                bottom: 58px;
                width: min(310px, calc(100vw - 24px));
                padding: 0;
            }

            .widget-toggle {
                width: 46px;
                height: 46px;
            }

            .widget-track-btn {
                padding: 0.65rem 0.7rem;
                font-size: 0.74rem;
            }
        }
        
        /* =========================================
           RETRO ENTRY SCREEN STYLES
           ========================================= */
        
        #entry-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 1.5s ease-out;
        }
        
        #entry-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }
        
        .crt-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.15),
                rgba(0, 0, 0, 0.15) 1px,
                transparent 1px,
                transparent 2px
            );
            pointer-events: none;
            z-index: 1;
        }
        
        .entry-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
        }
        
        /* Loading Stage Styles */
        #loading-stage {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.5s ease;
        }
        
        #loading-stage.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .loading-bar-container {
            width: 300px;
            height: 8px;
            border: 1px solid #ffffff;
            padding: 0;
            margin-bottom: 20px;
        }
        
        .loading-bar {
            width: 0%;
            height: 100%;
            background: #ffffff;
            animation: fillBar 3s linear forwards;
        }
        
        .loading-bar.animate {
            animation: fillBar 3s linear forwards;
        }
        
        @keyframes fillBar {
            0% { width: 0%; }
            100% { width: 100%; }
        }
        
        .loading-text {
            font-family: 'Courier New', 'VT323', 'Press Start 2P', monospace;
            font-size: 0.9rem;
            color: #ffffff;
            letter-spacing: 2px;
            animation: textFlicker 0.1s infinite;
        }
        
        /* Question Stage Styles */
        #question-stage {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        #question-stage.visible {
            display: flex;
            opacity: 1;
        }
        
        .terminal-text {
            font-family: 'Courier New', 'VT323', 'Press Start 2P', monospace;
            font-size: 1.5rem;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            letter-spacing: 2px;
            margin-bottom: 40px;
            line-height: 1.6;
            animation: textFlicker 0.1s infinite;
        }
        
        @keyframes textFlicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.97; }
        }
        
        .retro-button {
            font-family: 'Courier New', 'VT323', 'Press Start 2P', monospace;
            font-size: 1.2rem;
            color: #ffffff;
            background: transparent;
            border: 2px solid #ffffff;
            padding: 15px 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 4px;
            transition: all 0.2s ease;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }
        
        .retro-button:hover {
            background: #ffffff;
            color: #000000;
            text-shadow: none;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            transform: scale(1.05);
        }
        
        .retro-button:active {
            transform: scale(0.95);
        }
        
        /* Mobile Responsive for Entry Screen */
        @media (max-width: 768px) {
            .terminal-text {
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
            
            .retro-button {
                font-size: 1rem;
                padding: 12px 40px;
                letter-spacing: 3px;
            }
        }
        
        @media (max-width: 480px) {
            .terminal-text {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
            
            .retro-button {
                font-size: 0.9rem;
                padding: 10px 30px;
                letter-spacing: 2px;
            }
        }
        
        /* =========================================
           LORE SECTION STYLES
           ========================================= */
        
        #lore {
            padding: 100px 0;
            position: relative;
            scroll-margin-top: -65px;
            isolation: isolate;
        }

        #lore::before {
            content: '';
            position: absolute;
            top: 8%;
            left: 50%;
            width: min(900px, 90vw);
            height: 420px;
            background: radial-gradient(circle, rgba(251, 223, 54, 0.07), transparent 68%);
            transform: translateX(-50%);
            pointer-events: none;
            z-index: -1;
        }
        
        .lore-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .lore-section-header {
            max-width: 760px;
            margin: 0 auto 3.5rem;
            text-align: center;
        }

        .lore-section-eyebrow {
            margin-bottom: 0.8rem;
            color: rgba(251, 223, 54, 0.78);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .lore-title-image {
            width: 100%;
            max-width: 520px;
            height: auto;
            margin: 0 auto;
            object-fit: contain;
            filter: drop-shadow(0 8px 22px rgba(251, 223, 54, 0.14));
        }

        .lore-section-title {
            margin: 0;
            color: #FBDF36;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.4rem, 7vw, 4.75rem);
            font-weight: 900;
            letter-spacing: 0.16em;
            line-height: 1;
            text-transform: uppercase;
            text-shadow: 4px 4px 0 rgba(239, 25, 24, 0.7);
        }

        .lore-section-description {
            max-width: 620px;
            margin: 1.25rem auto 0;
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            line-height: 1.65;
        }

        .lore-timeline-panel {
            padding: 1.25rem 1.5rem 0.85rem;
            margin-bottom: 1rem;
            background: rgba(8, 8, 8, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            backdrop-filter: blur(14px);
        }

        .lore-timeline-meta {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 0.75rem;
        }

        .lore-timeline-caption,
        .lore-scroll-hint {
            color: rgba(255, 255, 255, 0.42);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }
        
        /* Timeline Bar */
        .timeline-bar-container {
            position: relative;
            width: 100%;
            height: 42px;
        }
        
        .timeline-bar {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            transform: translateY(-50%);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .timeline-bar:hover {
            background: rgba(255, 255, 255, 0.18);
        }
        
        .timeline-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, #EF1918, #FBDF36);
            border-radius: 999px;
            transition: width 0.3s ease;
        }
        
        .timeline-thumb {
            position: absolute;
            top: 50%;
            width: 16px;
            height: 16px;
            background: #FBDF36;
            border: 3px solid #151515;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            cursor: grab;
            box-shadow: 0 0 0 3px rgba(251, 223, 54, 0.18);
            transition: left 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
            z-index: 10;
        }
        
        .timeline-thumb:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 0 6px rgba(251, 223, 54, 0.18);
        }
        
        .timeline-thumb:active {
            cursor: grabbing;
        }
        
        .timeline-labels {
            position: absolute;
            top: calc(50% + 10px);
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 8px;
            pointer-events: none;
        }
        
        .timeline-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.42);
            transition: all 0.3s ease;
        }
        
        .timeline-label.active {
            color: #FBDF36;
            font-weight: bold;
        }
        
        /* Content Box */
        .lore-content-box {
            background: rgba(7, 7, 7, 0.88);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 0.75rem;
            min-height: 400px;
            max-height: 560px;
            overflow-y: auto;
            backdrop-filter: blur(14px);
            transition: border-color 0.3s ease;
            position: relative;
            scrollbar-width: thin;
            scrollbar-color: rgba(251, 223, 54, 0.45) transparent;
            scroll-behavior: smooth;
            overscroll-behavior: contain;
        }
        
        .lore-content-box:hover {
            border-color: rgba(251, 223, 54, 0.32);
        }
        
        .lore-content-box::-webkit-scrollbar {
            width: 5px;
        }
        
        .lore-content-box::-webkit-scrollbar-track {
            background: transparent;
        }
        
        .lore-content-box::-webkit-scrollbar-thumb {
            background: rgba(251, 223, 54, 0.35);
            border-radius: 999px;
        }
        
        .lore-content-box::-webkit-scrollbar-thumb:hover {
            background: rgba(251, 223, 54, 0.58);
        }
        
        .lore-entry {
            display: grid;
            grid-template-columns: 165px minmax(0, 1fr);
            column-gap: 2rem;
            padding: 1.6rem 1.75rem;
            margin-bottom: 0.5rem;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 10px;
            transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
            opacity: 0.46;
        }
        
        .lore-entry.active {
            opacity: 1;
            background: linear-gradient(90deg, rgba(251, 223, 54, 0.09), rgba(251, 223, 54, 0.025));
            border-color: rgba(251, 223, 54, 0.22);
        }
        
        .lore-entry:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.035);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .lore-entry.active:hover {
            background: linear-gradient(90deg, rgba(251, 223, 54, 0.11), rgba(251, 223, 54, 0.035));
            border-color: rgba(251, 223, 54, 0.3);
        }
        
        .lore-entry-date {
            grid-row: 1 / span 2;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(251, 223, 54, 0.78);
            letter-spacing: 0.06em;
            line-height: 1.5;
            text-transform: uppercase;
        }
        
        .lore-entry-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.08rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.65rem;
            letter-spacing: 0.015em;
        }
        
        .lore-entry-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.66);
            line-height: 1.72;
        }
        
        /* Current Date Indicator */
        .current-date-display {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: #FBDF36;
            letter-spacing: 0.04em;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .timeline-labels {
                font-size: 0.7rem;
            }
            
            .lore-content-box {
                min-height: 350px;
                max-height: 500px;
                padding: 0.5rem;
            }
            
            .lore-entry {
                grid-template-columns: 1fr;
                padding: 1.25rem;
            }

            .lore-entry-date {
                grid-row: auto;
                margin-bottom: 0.5rem;
            }
            
            .lore-entry-title {
                font-size: 1.1rem;
            }
            
            .current-date-display {
                font-size: 0.78rem;
            }

            .lore-section-header {
                margin-bottom: 2.5rem;
            }

            .lore-timeline-panel {
                padding: 1rem 1rem 0.6rem;
            }

            .lore-scroll-hint {
                display: none;
            }
        }

        /* =========================================
           EVENTS SECTION STYLES
           ========================================= */
        
        #burns {
            padding: 100px 0;
            position: relative;
            scroll-margin-top: -65px;
        }
        
        .events-container {
            max-width: 7xl;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* =========================================
           FIRE ANIMATIONS FOR BURNING EVENT CARD
           ========================================= */
        
        /* Flickering Glow Animation */
        @keyframes fireFlicker {
            0%, 100% {
                box-shadow:
                    0 0 20px rgba(255, 100, 0, 0.6),
                    0 0 40px rgba(255, 50, 0, 0.4),
                    0 0 60px rgba(255, 0, 0, 0.3),
                    0 0 80px rgba(255, 150, 0, 0.2),
                    inset 0 0 20px rgba(255, 100, 0, 0.1);
            }
            25% {
                box-shadow:
                    0 0 25px rgba(255, 120, 0, 0.7),
                    0 0 50px rgba(255, 60, 0, 0.5),
                    0 0 75px rgba(255, 10, 0, 0.4),
                    0 0 100px rgba(255, 180, 0, 0.3),
                    inset 0 0 25px rgba(255, 120, 0, 0.15);
            }
            50% {
                box-shadow:
                    0 0 15px rgba(255, 80, 0, 0.5),
                    0 0 30px rgba(255, 40, 0, 0.3),
                    0 0 45px rgba(255, 0, 0, 0.2),
                    0 0 60px rgba(255, 130, 0, 0.15),
                    inset 0 0 15px rgba(255, 80, 0, 0.08);
            }
            75% {
                box-shadow:
                    0 0 30px rgba(255, 140, 0, 0.8),
                    0 0 60px rgba(255, 70, 0, 0.6),
                    0 0 90px rgba(255, 20, 0, 0.5),
                    0 0 120px rgba(255, 200, 0, 0.4),
                    inset 0 0 30px rgba(255, 140, 0, 0.2);
            }
        }

        /* Ember Rising Animation */
        @keyframes emberRise {
            0% {
                transform: translateY(0) scale(1);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100px) scale(0);
                opacity: 0;
            }
        }

        /* Smoke Drift Animation */
        @keyframes smokeDrift {
            0% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0;
            }
            20% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-80px) translateX(20px) scale(1.5);
                opacity: 0;
            }
        }

        /* Heat Distortion Shimmer Animation */
        @keyframes heatShimmer {
            0%, 100% {
                transform: scale(1);
                border-radius: 16px;
            }
            25% {
                transform: scale(1.002);
                border-radius: 16.5px;
            }
            50% {
                transform: scale(1.001);
                border-radius: 15.5px;
            }
            75% {
                transform: scale(1.003);
                border-radius: 16.2px;
            }
        }

        /* =========================================
           BURNING EVENT TRACKER CARD WITH FIRE
           ========================================= */
        
        .burn-tracker-card {
            background: rgba(10, 10, 10, 0.85);
            border-radius: 16px;
            padding: 1.25rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            will-change: transform, box-shadow;
            /* Custom Fire Theme Borders */
            border: 3px solid transparent;
            border-image: linear-gradient(135deg, #ff4500, #ff6600, #ff8c00, #ffcc00, #ff4500) 1;
            animation: fireFlicker 3s ease-in-out infinite alternate, heatShimmer 2s ease-in-out infinite;
        }
        
        /* Fire Background Image */
        .burn-tracker-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: none;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.04;
            z-index: 0;
            pointer-events: none;
            mix-blend-mode: screen;
        }

        /* Load the large fire animation only when the burns section is nearby. */
        #burns.is-near-view .burn-tracker-card::before {
            background-image: url('Firebackground.gif');
        }

        /* Let the browser skip paint/layout work for distant sections. */
        #main-content > section:not(#home) {
            content-visibility: auto;
            contain-intrinsic-size: auto 900px;
        }

        /* Stop compositor-heavy effects in sections that cannot be seen. */
        #main-content > section.perf-paused *,
        #main-content > section.perf-paused *::before,
        #main-content > section.perf-paused *::after {
            animation-play-state: paused !important;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
            }
        }
        
        .burn-tracker-card:hover {
            transform: translateY(-5px) scale(1.01);
        }
        
        /* Inner content wrapper to sit above background */
        .burn-card-content {
            position: relative;
            z-index: 1;
        }
        
        /* Ember particles */
        .ember-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #ffcc00, #ff6600, transparent);
            border-radius: 50%;
            pointer-events: none;
            animation: emberRise 2s ease-out infinite;
        }
        
        .ember-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .ember-particle:nth-child(2) { left: 30%; animation-delay: 0.5s; }
        .ember-particle:nth-child(3) { left: 50%; animation-delay: 1s; }
        .ember-particle:nth-child(4) { left: 70%; animation-delay: 1.5s; }
        .ember-particle:nth-child(5) { left: 90%; animation-delay: 0.3s; }
        
        /* Smoke particles */
        .smoke-particle {
            position: absolute;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, rgba(100, 100, 100, 0.3), transparent);
            border-radius: 50%;
            pointer-events: none;
            animation: smokeDrift 4s ease-out infinite;
        }
        
        .smoke-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
        .smoke-particle:nth-child(2) { left: 60%; animation-delay: 1.5s; }
        .smoke-particle:nth-child(3) { left: 80%; animation-delay: 3s; }
        
        /* =========================================
           EMBERS & SMOKE OVERLAY FOR BURNING CARD
           ========================================= */

        /* Burning Event Title - Animated Orange Gradient on Hover */
        .burning-event-title {
            transition: all 0.3s ease;
            position: relative;
        }

        .burning-event-title:hover {
            background: linear-gradient(90deg, #ff4500, #ff6600, #ff8c00, #ffcc00, #ff6600, #ff4500);
            background-size: 400% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbowFlow 2s linear infinite;
        }
        
        
        /* Circular Progress for Burn Tracker */
        .burn-progress-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            position: relative;
        }
        
        .burn-progress-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
        }
        
        .burn-progress-circle {
            position: relative;
            width: 180px;
            height: 180px;
        }
        
        .burn-progress-circle svg {
            transform: rotate(-90deg);
            width: 100%;
            height: 100%;
        }
        
        .burn-progress-circle .progress-bg {
            fill: none;
            stroke: rgba(255, 102, 0, 0.2);
            stroke-width: 12;
        }
        
        .burn-progress-circle .progress-bar {
            fill: none;
            stroke: url(#burnGradient);
            stroke-width: 12;
            stroke-linecap: round;
            stroke-dasharray: 377;
            stroke-dashoffset: 377;
            transition: stroke-dashoffset 1s ease;
            filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.4));
        }
        
        .burn-progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        
        .burn-percentage {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: #ff6600;
            text-shadow: 0 0 15px rgba(255, 102, 0, 0.4), 0 0 30px rgba(255, 50, 0, 0.25);
            line-height: 1;
            animation: textFlicker 0.5s ease-in-out infinite alternate;
        }
        
        .burn-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.5rem;
        }
        
        .burn-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            width: 100%;
            margin-top: 1.5rem;
        }
        
        .burn-stat {
            text-align: center;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid rgba(255, 102, 0, 0.3);
            border-radius: 8px;
            padding: 1rem;
            transition: all 0.3s ease;
        }
        
        .burn-stat:hover {
            background: rgba(255, 102, 0, 0.15);
            border-color: rgba(255, 140, 0, 0.5);
            box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
        }
        
        .burn-stat-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff6600;
            text-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
        }
        
        .burn-stat-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Burn History Box */
        .burn-history-box {
            background: rgba(0, 0, 0, 0.85);
            border: 2px solid #ff6600;
            border-radius: 12px;
            padding: 1rem;
            margin-top: 1.5rem;
            width: 100%;
            max-width: 100%;
            box-shadow: 0 0 20px rgba(255, 102, 0, 0.15), inset 0 0 15px rgba(255, 102, 0, 0.05);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .burn-history-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            box-shadow: 0 0 25px rgba(255, 102, 0, 0.5), 0 0 10px rgba(255, 50, 0, 0.3);
            pointer-events: none;
            z-index: -1;
        }

        .burn-history-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 102, 0, 0.4);
            border-color: #ff8c00;
        }
        
        .burn-history-header {
            display: grid;
            grid-template-columns: 1fr 1fr 1.5fr;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-bottom: 2px solid rgba(255, 102, 0, 0.4);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: bold;
            color: #ff6600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .burn-history-list {
            max-height: 200px;
            overflow-y: auto;
            padding: 0.5rem 0;
        }
        
        /* Custom scrollbar for burn history */
        .burn-history-list::-webkit-scrollbar {
            width: 6px;
        }
        
        .burn-history-list::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 3px;
        }
        
        .burn-history-list::-webkit-scrollbar-thumb {
            background: rgba(255, 102, 0, 0.5);
            border-radius: 3px;
            border: 1px solid rgba(255, 102, 0, 0.3);
        }
        
        .burn-history-list::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 140, 0, 0.7);
        }
        
        .burn-history-list::-webkit-scrollbar-corner {
            background: rgba(0, 0, 0, 0.5);
        }
        
        /* Firefox scrollbar */
        .burn-history-list {
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 102, 0, 0.5) rgba(0, 0, 0, 0.5);
        }
        
        .burn-history-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1.5fr;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.2s ease;
        }
        
        .burn-history-row:last-child {
            border-bottom: none;
        }
        
        .burn-history-row:hover {
            background: rgba(255, 102, 0, 0.15);
            color: #fff;
            border-color: rgba(255, 140, 0, 0.4);
        }
        
        .burn-history-cell {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .burn-history-cell.tx-hash {
            color: #ff6600;
            font-family: monospace;
            font-size: 0.8rem;
            text-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
        }
        
        .burn-history-link-container {
            padding: 0.75rem;
            border-top: 2px solid rgba(255, 102, 0, 0.3);
            text-align: center;
        }
        
        .burn-history-link {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            color: #ff6600;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 2px solid #ff6600;
            border-radius: 20px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
        }
        
        .burn-history-link:hover {
            background: rgba(255, 102, 0, 0.2);
            box-shadow: 0 0 20px rgba(255, 102, 0, 0.6), 0 0 30px rgba(255, 50, 0, 0.3);
            transform: translateY(-2px);
            border-color: #ff8c00;
        }
        
        /* Events Section Title */
        .events-title-image {
            filter: drop-shadow(0 0 10px rgba(253, 244, 116, 0.8));
            transition: filter 0.3s ease;
        }
        
        .events-title-image:hover {
            filter: drop-shadow(0 0 30px rgba(253, 244, 116, 1));
        }
        
        /* Mobile Responsive for Events Section */
        @media (max-width: 768px) {
            .burn-progress-circle {
                width: 150px;
                height: 150px;
            }
            
            .burn-percentage {
                font-size: 1.25rem;
            }
            
            .burn-stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Honorable Burns Leaderboard */
        .honorable-burns-card {
            background: linear-gradient(145deg, rgba(15, 15, 15, 0.96), rgba(5, 5, 5, 0.96));
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
        }

        .honorable-burns-intro {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .honorable-burns-eyebrow {
            color: #ff7a1a;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .honorable-burns-title {
            margin-top: 0.35rem;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.6rem, 4vw, 2.5rem);
            font-weight: 800;
            letter-spacing: 0.03em;
        }

        .honorable-burns-description {
            max-width: 620px;
            margin-top: 0.6rem;
            color: rgba(255, 255, 255, 0.62);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.6;
        }

        .honorable-burns-actions {
            display: flex;
            flex-shrink: 0;
            gap: 0.75rem;
        }

        .honorable-burns-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.82);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-decoration: none;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        }

        .honorable-burns-action:hover {
            border-color: #ff7a1a;
            background: rgba(255, 122, 26, 0.08);
            color: #fff;
        }

        .honorable-burns-table {
            width: 100%;
            overflow-x: auto;
        }

        .honorable-burns-row {
            display: grid;
            grid-template-columns: 80px minmax(210px, 1.3fr) minmax(180px, 1fr) minmax(150px, 0.8fr);
            align-items: center;
            min-width: 700px;
            padding: 1rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.78);
            font-family: 'Space Grotesk', sans-serif;
        }

        .honorable-burns-row:last-child {
            border-bottom: 0;
        }

        .honorable-burns-row:not(.honorable-burns-table-head):hover {
            background: rgba(255, 255, 255, 0.025);
        }

        .honorable-burns-table-head {
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            background: rgba(255, 255, 255, 0.025);
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .honorable-burns-rank {
            color: rgba(255, 255, 255, 0.56);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        .honorable-burns-row:nth-child(2) .honorable-burns-rank {
            color: #f5c451;
        }

        .honorable-burns-amount {
            color: #fff;
            font-weight: 700;
        }

        .honorable-burns-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .honorable-burns-link {
            color: #ff8b3d;
            font-family: monospace;
            font-size: 0.78rem;
            text-decoration: none;
        }

        .honorable-burns-link:hover,
        .honorable-burns-handle:hover {
            color: #ffb27f;
            text-decoration: underline;
        }

        .honorable-burns-handle {
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
        }

        .honorable-burns-footer {
            padding: 1rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            text-align: right;
        }

        .honorable-burns-footer a {
            color: rgba(255, 255, 255, 0.56);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-decoration: none;
            text-transform: uppercase;
        }

        .honorable-burns-footer a:hover {
            color: #ff8b3d;
        }

        @media (max-width: 768px) {
            .honorable-burns-intro {
                align-items: flex-start;
                flex-direction: column;
                margin-bottom: 1.5rem;
            }

            .honorable-burns-actions {
                width: 100%;
            }

            .honorable-burns-action {
                flex: 1;
            }

            .honorable-burns-row {
                padding-right: 1.5rem;
                padding-left: 1.5rem;
            }

            .honorable-burns-footer {
                padding-right: 1.5rem;
                padding-left: 1.5rem;
                text-align: left;
            }
        }

        /* Professional Site Navigation */
        nav.site-nav {
            position: fixed;
            background: rgba(5, 5, 5, 0.88) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        nav.site-nav.nav-hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateY(-100%);
        }

        nav.site-nav::after {
            height: 1px;
            opacity: 0.5;
        }

        .site-nav-inner {
            height: 68px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            min-width: max-content;
            text-decoration: none;
        }

        .nav-brand-image {
            width: 38px;
            height: 38px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 11px;
        }

        .nav-brand-copy {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        nav .nav-brand-name {
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
        }

        nav .nav-brand-label {
            color: rgba(255, 255, 255, 0.34);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            line-height: 1;
            text-transform: uppercase;
        }

        .nav-brand:hover .nav-brand-name {
            background: linear-gradient(90deg, #ff4b4b, #ffb347, #fff36b, #79ef8d, #6bb9ff, #c979ff);
            background-size: 250% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbowFlow 3s linear infinite;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: clamp(1rem, 2vw, 1.7rem);
        }

        nav.site-nav .nav-link {
            padding: 0.5rem 0;
            color: rgba(255, 255, 255, 0.56) !important;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-shadow: none !important;
        }

        nav.site-nav .nav-link::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 1px;
            background: #FDF474;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.2s ease;
        }

        nav.site-nav #home-link::after,
        nav.site-nav #roadmap-link::after,
        nav.site-nav #lore-link::after,
        nav.site-nav #burns-link::after {
            background: #EA2B1D;
        }

        nav.site-nav .nav-link:hover {
            color: #fff !important;
            text-shadow: none !important;
        }

        nav.site-nav #tokenomics-link::after,
        nav.site-nav #content-link::after {
            background: #FDF474;
        }

        nav.site-nav .nav-link:hover::after {
            transform: scaleX(1);
        }

        .nav-chart-link {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.65rem 0.85rem;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: 9px;
            color: rgba(255, 255, 255, 0.82);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-decoration: none;
            text-transform: uppercase;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .nav-chart-link::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #69d77c;
            border-radius: 50%;
            box-shadow: 0 0 0 3px rgba(105, 215, 124, 0.1);
        }

        .nav-chart-link:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(105, 215, 124, 0.3);
            color: #fff;
        }

        nav.site-nav .mobile-menu-btn {
            width: 38px;
            height: 38px;
            padding: 10px 8px;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 9px;
        }

        nav.site-nav .mobile-menu-btn span {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.75);
        }

        nav.site-nav .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        nav.site-nav .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        nav.site-nav .mobile-nav {
            top: calc(100% + 1px);
            padding: 0.75rem;
            background: rgba(7, 7, 7, 0.98);
            border-top: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(18px);
        }

        nav.site-nav .mobile-nav.active {
            gap: 0.2rem;
        }

        nav.site-nav .mobile-nav .nav-link {
            padding: 0.8rem 0.85rem;
            border-radius: 7px;
        }

        nav.site-nav .mobile-nav .nav-link::after {
            display: none;
        }

        nav.site-nav .mobile-nav .nav-link:hover {
            background: rgba(255, 255, 255, 0.04);
        }

        nav.site-nav .mobile-nav .nav-chart-link {
            justify-content: center;
            margin-top: 0.45rem;
        }

        @media (max-width: 900px) {
            .nav-desktop {
                gap: 0.9rem;
            }

            nav.site-nav .nav-link {
                font-size: 0.64rem;
                letter-spacing: 0.07em;
            }
        }

        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }

            .site-nav-inner {
                height: 62px;
            }
        }

        /* Professional Hero Actions */
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-top: 1.75rem;
        }

        .hero-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            min-height: 46px;
            padding: 0.75rem 1.05rem;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 9px;
            color: rgba(255, 255, 255, 0.8);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            line-height: 1;
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .hero-action:hover {
            background: rgba(255, 255, 255, 0.065);
            border-color: rgba(255, 255, 255, 0.28);
            color: #fff;
            transform: translateY(-2px);
        }

        .hero-action-primary {
            background: #EA2B1D;
            border-color: #EA2B1D;
            color: #fff;
            box-shadow: 0 10px 28px rgba(234, 43, 29, 0.18);
        }

        .hero-action-primary:hover {
            background: #f03a2c;
            border-color: #f03a2c;
            color: #fff;
        }

        .hero-action-icon {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }

        .hero-action-copy.copied {
            background: rgba(105, 215, 124, 0.09);
            border-color: rgba(105, 215, 124, 0.34);
            color: #8eef9f;
        }

        @media (max-width: 640px) {
            .hero-actions {
                width: 100%;
                justify-content: center;
            }

            .hero-action-primary {
                width: 100%;
            }

            .hero-action:not(.hero-action-primary) {
                flex: 1;
            }
        }
        /* Community content library */
        .content-library { position: relative; scroll-margin-top: 88px; }
        .content-library::before { content: ''; position: absolute; inset: 12% 0 auto; height: 420px; background: radial-gradient(circle at 50% 50%, rgba(234, 43, 29, 0.11), transparent 68%); pointer-events: none; }
        .content-header { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; margin-bottom: 2rem; }
        .content-eyebrow { margin-bottom: .75rem; color: #FDF474; font-family: 'Space Grotesk', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
        .content-title { color: #fff; font-family: 'Orbitron', sans-serif; font-size: clamp(2rem, 5vw, 4.4rem); font-weight: 800; letter-spacing: -.04em; line-height: .98; }
        .content-description { max-width: 650px; margin-top: 1rem; color: rgba(255,255,255,.55); font-family: 'Space Grotesk', sans-serif; font-size: 1rem; line-height: 1.7; }
        .content-count { display: flex; flex-direction: column; align-items: flex-end; color: rgba(255,255,255,.38); font-family: 'Space Grotesk', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
        .content-count strong { color: #fff; font-family: 'Orbitron', sans-serif; font-size: 2rem; letter-spacing: 0; }
        .content-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; padding: .65rem; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; }
        .content-filters { display: flex; flex-wrap: wrap; gap: .4rem; }
        .content-filter { padding: .65rem .9rem; border: 1px solid transparent; border-radius: 8px; color: rgba(255,255,255,.48); font-family: 'Space Grotesk', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: .2s ease; }
        .content-filter:hover { color: #fff; }
        .content-filter.active { background: #EA2B1D; border-color: #f34d40; color: #fff; box-shadow: 0 7px 20px rgba(234,43,29,.2); }
        .content-toolbar-note { padding-right: .5rem; color: rgba(255,255,255,.32); font-family: 'Space Grotesk', sans-serif; font-size: .68rem; letter-spacing: .06em; }
        .content-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
        .content-card { grid-column: span 4; overflow: hidden; background: rgba(10,10,10,.78); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; transition: transform .25s ease, border-color .25s ease; }
        .content-card.featured { grid-column: span 6; }
        .content-card:hover { border-color: rgba(253,244,116,.32); transform: translateY(-4px); }
        .content-card[hidden] { display: none; }
        .content-media { position: relative; width: 100%; height: 260px; overflow: hidden; background: #050505; cursor: zoom-in; }
        .content-card.featured .content-media { height: 330px; }
        .content-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
        .content-card:hover .content-media img { transform: scale(1.035); }
        .content-type { position: absolute; top: .75rem; left: .75rem; padding: .38rem .55rem; background: rgba(0,0,0,.72); border: 1px solid rgba(255,255,255,.15); border-radius: 6px; color: rgba(255,255,255,.8); font-family: 'Space Grotesk', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
        .content-card-body { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; }
        .content-card-title { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 700; }
        .content-card-meta { margin-top: .2rem; color: rgba(255,255,255,.32); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
        .content-download { flex: 0 0 auto; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: rgba(255,255,255,.65); transition: .2s ease; }
        .content-download:hover { background: rgba(253,244,116,.1); border-color: rgba(253,244,116,.35); color: #FDF474; }
        .content-lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 2rem; background: rgba(0,0,0,.92); backdrop-filter: blur(14px); }
        .content-lightbox.open { display: grid; }
        .content-lightbox img { max-width: min(100%, 1000px); max-height: 82vh; border-radius: 14px; box-shadow: 0 30px 100px rgba(0,0,0,.8); }
        .content-lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; font-size: 1.4rem; }
        @media (max-width: 900px) { .content-card, .content-card.featured { grid-column: span 6; } .content-media, .content-card.featured .content-media { height: 280px; } }
        @media (max-width: 640px) { .content-header { grid-template-columns: 1fr; gap: 1rem; } .content-count { align-items: flex-start; } .content-toolbar { align-items: stretch; flex-direction: column; } .content-toolbar-note { display: none; } .content-filters { display: grid; grid-template-columns: repeat(3, 1fr); } .content-filter { padding-inline: .4rem; } .content-card, .content-card.featured { grid-column: 1 / -1; } .content-media, .content-card.featured .content-media { height: 260px; } }
