:root {
            --primary: #e879f9;
            --secondary: #c084fc;
            --accent: #f0abfc;
            --background: #000000;
            --text: #ffffff;
            --glow: #e879f9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background: var(--background);
            color: var(--text);
            line-height: 1.6;
            font-family: 'Orbitron', 'Inter', sans-serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 0;
        }

        .hero-content {
            max-width: 800px;
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            text-shadow: 0 0 20px var(--glow), 0 0 40px var(--glow), 0 0 60px var(--glow);
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .subtitle {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--primary);
            color: black;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s;
            margin: 0 0.5rem;
            box-shadow: 0 0 20px rgba(232, 121, 249, 0.5);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(232, 121, 249, 0.8);
        }

        .cta-button.secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            text-shadow: 0 0 10px var(--glow);
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text);
            margin-top: 0.5rem;
        }

        .testnet-notice {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #f59e0b, #d97706);
            color: black;
            text-align: center;
            padding: 0.5rem;
            font-weight: bold;
            z-index: 1000;
        }

        .hero {
             padding-top: 6rem;
         }

         .video-section {
             margin-top: 4rem;
             text-align: center;
         }

         .video-section h2 {
             color: var(--primary);
             margin-bottom: 2rem;
             font-size: 2rem;
         }

         .video-container {
             position: relative;
             width: 100%;
             max-width: 560px;
             margin: 0 auto;
             border-radius: 12px;
             overflow: hidden;
             box-shadow: 0 0 30px rgba(232, 121, 249, 0.3);
         }

         .video-container iframe {
             width: 100%;
             height: 315px;
         }

         .footer {
             background: rgba(255, 255, 255, 0.02);
             border-top: 1px solid rgba(232, 121, 249, 0.2);
             margin-top: 6rem;
             padding: 3rem 0 1rem;
         }

         .footer-content {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
             gap: 2rem;
             margin-bottom: 2rem;
         }

         .footer-section h3 {
             color: var(--primary);
             margin-bottom: 1rem;
         }

         .footer-section h4 {
             color: var(--text);
             margin-bottom: 1rem;
             font-size: 1.1rem;
         }

         .footer-section ul {
             list-style: none;
             padding: 0;
         }

         .footer-section ul li {
             margin-bottom: 0.5rem;
         }

         .footer-section ul li a {
             color: #94a3b8;
             text-decoration: none;
             transition: color 0.3s;
         }

         .footer-section ul li a:hover {
             color: var(--primary);
         }

         .footer-section p {
             color: #94a3b8;
             line-height: 1.6;
         }

         .footer-bottom {
             border-top: 1px solid rgba(232, 121, 249, 0.1);
             padding-top: 2rem;
             text-align: center;
             color: #64748b;
         }

         .footer-bottom p {
             margin: 0.5rem 0;
         }

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

             .subtitle {
                 font-size: 1.2rem;
             }

             .video-container {
                 max-width: 100%;
                 padding: 0 1rem;
             }

             .video-container iframe {
                 height: 200px;
             }

             .footer-content {
                 grid-template-columns: 1fr;
                 text-align: center;
             }
         }
