        :root {
            --bg-primary: var(--dark-bg);
            --bg-secondary: var(--dark-secondary);
            --bg-tertiary: var(--dark-card);
            --neon-cyan: var(--neon-violet);
            --neon-magenta: var(--neon-gold);
            --neon-purple: var(--gold-dark);
            --gradient-1: linear-gradient(135deg, var(--neon-gold) 0%, var(--gold-dark) 100%);
            --gradient-2: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Background */
.bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: transparent;
}
@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

        @keyframes bgShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .cta-nav {
            background: var(--gradient-1);
            color: var(--text-primary) !important;
            border-radius: 50px;
            padding: 0.5rem 1.5rem !important;
        }

        .cta-nav:hover {
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 50px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-logo {
            font-size: clamp(4.5rem, 8vw, 7rem);
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        @keyframes glow {

            0%,
            100% {
                filter: brightness(1);
            }

            50% {
                filter: brightness(1.3);
            }
        }

        .hero-subtitle {
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: var(--neon-violet);
            margin-bottom: -1rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero-tagline {
            font-size: clamp(1.2rem, 4vw, 2rem);
            color: var(--text-secondary);
            margin-bottom: 10rem;
            font-weight: 300;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta {
            animation: fadeInUp 1s ease 0.6s both;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            font-size: 2rem;
            color: var(--neon-cyan);
            opacity: 0.7;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translate(-50%, 0);
            }

            50% {
                transform: translate(-50%, 10px);
            }
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--text-secondary);
            margin-bottom: 3rem;
        }

        /* World Section */
        .world-section {
            background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 50%, transparent 100%);
        }

        .stat-badge {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 245, 255, 0.2);
            border-radius: 15px;
            padding: 2rem 1rem;
            text-align: center;
            transition: all 0.3s ease;
            background: var(--gradient-card);
            border: 1px solid rgb(255 255 255 / 10%);
            border-radius: 3px;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(10px);
            transition: all var(--transition-normal);
        }

        .stat-badge:hover {
            background: rgba(0, 245, 255, 0.05);
            border-color: var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Garden Cards */
        .garden-card {
            background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%);
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            border: 1px solid rgb(255 255 255 / 50%);
            box-shadow: 0px 16px 4px -5px #000000;
            border-radius: 2px;
            overflow: hidden;
            user-select: none;
            padding: 0px;
            transform: scale(0.95);
            transition: all 0.4s ease;
            height: 100%;
        }

        .garden-card:hover {
            transform: scale(1);
            box-shadow: 0px 16px 4px -5px #0000009f;
            transform: translateY(-10px);
        }

        .garden-image {
            width: 100%;
            /* height: 50px; */
            /* background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .garden-card:hover .garden-image {
            opacity: 1;
            transform: scale(1.05);
        }

        .garden-body {
            display: flex;
            padding: 1rem;
            margin-top: auto;
            height: 100%;
            background: linear-gradient(0deg, #000000bf 45%, transparent 100%);
            flex-direction: column;
            justify-content: flex-end;
        }

        .garden-title {
            font-size: 1.5rem;
            font-weight: normal;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 0px 0px 5px #ffffffc4;
            color: var(--text-primary);
            letter-spacing: 2px;
        }

        .garden-partner {
            font-size: 1.25rem;
            color: var(--neon-gold);
            text-transform: uppercase;
            font-weight: normal;
            text-shadow: 0px 0px 3px var(--neon-gold);
            letter-spacing: 2px;
            line-height: 1.3rem;
        }

        .garden-partner small {
            display: block;
            font-size: .75em;
            line-height: 1rem;
            letter-spacing: normal;
            opacity: 0.8;
            text-shadow: none;
            text-align: center;
            width: auto;
        }

        .garden-description {
            color: var(--text-primary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .garden-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .feature-badge {
            background: rgba(0, 245, 255, 0.1);
            color: var(--neon-cyan);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(0, 245, 255, 0.2);
        }

        /* Game Cards */

        .game-card > *, .game-card:hover > * {
    transform: skew(10deg);
}
.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    overflow: visible;
    height: 100%;
    background: var(--gradient-card);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 3px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    display: flex;
    transition: all var(--transition-normal);
    flex-direction: column;
    transform: skew(-10deg);
}

        .game-card:hover {
            border-color: var(--neon-magenta);
            box-shadow: 0 10px 40px rgba(255, 0, 255, 0.2);
            transform: skew(-10deg);

        }

.game-icon {
    width: 100%;
    padding-bottom: 50%;
    margin-top: -40%;
    margin-left: -25%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

        .game-card:hover .game-icon {
            transform: skew(10deg) rotateY(360deg) scale(1.3);
        }

        .game-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .game-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 0px;
        }

        /* Roadmap Timeline */
        .roadmap-section {
            background: var(--bg-secondary);
        }

        .timeline {
            position: relative;
            padding-left: 60px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            height: 100%;
            width: 2px;
            background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 2rem;
        }

        .timeline-marker {
            position: absolute;
            left: -3rem;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
        }

        .timeline-badge {
            display: inline-block;
            background: rgba(0, 245, 255, 0.1);
            color: var(--neon-cyan);
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }

        .timeline-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Join Section */
        .join-section {
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
        }

        .join-callout {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(0, 245, 255, 0.2);
            border-radius: 30px;
            padding: 4rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            background: var(--gradient-card);
            border: 1px solid rgb(255 255 255 / 10%);
            border-radius: 3px;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(10px);
            transition: all var(--transition-normal);
        }

        .join-callout:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 40px rgba(0, 245, 255, 0.2);
        }

        .join-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .join-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gradient-1);
            border-color: var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
            transform: translateY(-5px);
        }

        /* Footer */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid rgba(0, 245, 255, 0.1);
            padding: 3rem 0 2rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-heading {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-cyan);
            padding-left: 5px;
        }

        /* Scroll Reveal Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal Styles */
        .modal-content {
            background: var(--bg-secondary);
            border: 1px solid rgba(0, 245, 255, 0.2);
            border-radius: 20px;
        }

        .modal-header {
            border-bottom: 1px solid rgba(0, 245, 255, 0.1);
        }

        .modal-footer {
            border-top: 1px solid rgba(0, 245, 255, 0.1);
        }

        .btn-close {
            filter: invert(1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .hero-section {
                min-height: 90vh;
                padding: 80px 0 30px;
            }

            .timeline {
                padding-left: 40px;
            }

            .timeline::before {
                left: 10px;
            }

            .timeline-marker {
                left: -2.5rem;
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }

            .join-callout {
                padding: 3rem 1.5rem;
            }
        }

        /* Loading Animation */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .loading {
            animation: pulse 2s ease infinite;
        }