 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
            color: #fff;
            min-height: 100vh;
        }
       .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .glow-orb {
            position: fixed;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(57, 255, 20, 0.15) 0%, transparent 70%);
            filter: blur(60px);
            pointer-events: none;
            z-index: 0;
        }

        .glow-orb-1 { top: -200px; left: -200px; animation: float 15s ease-in-out infinite; }
        .glow-orb-2 { bottom: -200px; right: -200px; animation: float 20s ease-in-out infinite reverse; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 50px) scale(1.1); }
        }


        section {
            position: relative;
            z-index: 1;
            padding: 100px 0;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #39FF14);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #b0b0b0;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn {
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
        }

        .btn-primary {
            background: #39FF14;
            color: #0a0a0a;
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(57, 255, 20, 0.8);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Section Titles */
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: #39FF14;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #b0b0b0;
            max-width: 800px;
            margin: -40px auto 60px;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            background: rgba(20, 20, 20, 0.5);
            backdrop-filter: blur(10px);
        }

        .icon-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .icon-card {
            background: rgba(30, 30, 30, 0.8);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .icon-card:hover {
            transform: translateY(-10px);
            border-color: #39FF14;
            box-shadow: 0 10px 40px rgba(57, 255, 20, 0.3);
        }

        .icon-card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #39FF14;
        }

        .icon-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #39FF14;
        }

        .icon-card p {
            color: #b0b0b0;
            line-height: 1.6;
        }

        /* Who We Build */
        .who-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }

        .who-card {
            background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
            border: 1px solid rgba(57, 255, 20, 0.3);
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .who-card:hover {
            transform: scale(1.05);
            border-color: #39FF14;
            box-shadow: 0 0 40px rgba(57, 255, 20, 0.4);
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(30, 30, 30, 0.9));
        }

        .who-card-emoji {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
            color: #39FF14;
        }

        .who-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .who-card p {
            font-size: 0.9rem;
            color: #b0b0b0;
        }

        /* How It Works */
        .how-it-works {
            background: rgba(20, 20, 20, 0.3);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
        }

        .step {
            background: rgba(30, 30, 30, 0.8);
            border: 2px solid rgba(57, 255, 20, 0.2);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .step:hover {
            border-color: #39FF14;
            transform: translateY(-5px);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #39FF14;
            color: #0a0a0a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #39FF14;
        }

        /* Opportunities */
        .opportunity-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .opportunity-card {
            background: rgba(30, 30, 30, 0.9);
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 16px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .opportunity-card:hover {
            border-color: #39FF14;
            box-shadow: 0 0 50px rgba(57, 255, 20, 0.4);
            transform: translateY(-10px);
        }

        .opportunity-card-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #39FF14;
        }

        .opportunity-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .opportunity-card a {
            color: #39FF14;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .opportunity-card a:hover {
            transform: translateX(5px);
        }

        /* Access System */
        .access {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
            border-top: 1px solid rgba(57, 255, 20, 0.2);
            border-bottom: 1px solid rgba(57, 255, 20, 0.2);
        }

        .access-form {
            max-width: 500px;
            margin: 40px auto 0;
            text-align: center;
        }

        .access-input {
            width: 100%;
            padding: 16px 20px;
            font-size: 1.1rem;
            background: rgba(30, 30, 30, 0.9);
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 8px;
            color: #fff;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
            transition: all 0.3s ease;
        }

        .access-input:focus {
            outline: none;
            border-color: #39FF14;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
        }

        .access-link {
            color: #39FF14;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 20px;
        }

        .access-link:hover {
            text-decoration: underline;
        }

        /* Partners */
        .partners {
            background: rgba(20, 20, 20, 0.5);
        }

        .partner-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .partner-logo {
            height: 100px;
            background: rgba(30, 30, 30, 0.8);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #b0b0b0;
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            border-color: #39FF14;
            transform: scale(1.05);
        }

        /* Events */
        .event-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .event-card {
            background: rgba(30, 30, 30, 0.9);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-10px);
            border-color: #39FF14;
            box-shadow: 0 10px 40px rgba(57, 255, 20, 0.3);
        }

        .event-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(20, 20, 20, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .event-content {
            padding: 30px;
        }

        .event-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #39FF14;
        }

        .event-content p {
            color: #b0b0b0;
            margin-bottom: 8px;
        }

        /* Footer CTA */
        .footer-cta {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
            text-align: center;
            padding: 100px 20px;
        }

        .footer-cta h2 {
            font-size: 3rem;
            margin-bottom: 40px;
            color: #39FF14;
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 60px 20px 30px;
            text-align: center;
            border-top: 1px solid rgba(57, 255, 20, 0.2);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #39FF14;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(57, 255, 20, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #39FF14;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #39FF14;
            color: #0a0a0a;
            transform: scale(1.1);
        }

        .footer-tagline {
            color: #b0b0b0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }