
        /* --- VARIABLES & RESET --- */
        :root {
            --bg-deep: #050505;
            --bg-panel: #0f0f13;
            --bg-card: #1a1a20;
            --primary: #9d00ff; /* Electric Purple */
            --secondary: #00f3ff; /* Neon Cyan */
            --accent: #ffd700; /* Luxury Gold */
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --font-head: 'Orbitron', sans-serif;
            --font-body: 'Poppins', sans-serif;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --glow: 0 0 15px rgba(157, 0, 255, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-family: var(--font-head);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: var(--transition);
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), #7000ff);
            color: white;
            box-shadow: 0 0 15px rgba(157, 0, 255, 0.4);
        }

        .btn-primary:hover {
            box-shadow: 0 0 30px rgba(157, 0, 255, 0.8);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-secondary:hover {
            background: var(--secondary);
            color: var(--bg-deep);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
        }

        .section-title {
            font-family: var(--font-head);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-padding { padding: 5rem 0; }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 5, 5, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-head);
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 0 0 10px var(--primary);
        }
        
        .logo span { color: var(--secondary); }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--secondary);
            text-shadow: 0 0 8px var(--secondary);
        }

        .auth-buttons .btn { padding: 8px 20px; font-size: 0.8rem; }
        
        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: white; }

        /* --- HERO SECTION --- */
        #hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 60px;
        }

        canvas#particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(2px);
            border-radius: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-family: var(--font-head);
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero-title span {
            display: block;
            color: var(--secondary);
            text-shadow: 0 0 20px var(--secondary);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }

        /* --- TICKER --- */
        #latest-betting {
            background: var(--primary);
            overflow: hidden;
            white-space: nowrap;
            padding: 10px 0;
            position: relative;
            z-index: 900;
        }

        .ticker-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }

        .ticker-item {
            display: inline-block;
            margin-right: 50px;
            font-family: var(--font-head);
            font-weight: bold;
            color: white;
            font-size: 0.9rem;
        }

        .ticker-item i { color: var(--accent); margin-right: 5px; }

        /* --- ABOUT --- */
        #about { background: var(--bg-panel); }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-visual img {
            width: 100%;
            border-radius: 10px;
            box-shadow: -10px 10px 0 var(--primary);
            border: 2px solid #333;
        }

        .about-text h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--accent); }
        .about-text p { margin-bottom: 1.5rem; color: var(--text-muted); }

        /* --- GAMES (9 Cards) --- */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .game-card {
            position: relative;
            background: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #333;
            group: hover;
            height: 250px;
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
        }

        .game-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .game-card:hover .game-thumb { transform: scale(1.1); filter: brightness(0.4); }

        .game-info {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            transition: var(--transition);
            z-index: 2;
        }

        .game-card:hover .game-info { bottom: 0; }

        .game-title { font-family: var(--font-head); color: white; font-size: 1.2rem; }
        .game-cta {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: var(--secondary);
            color: black;
            padding: 10px 20px;
            font-weight: bold;
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
            transition: var(--transition);
            z-index: 3;
        }

        .game-card:hover .game-cta { transform: translate(-50%, -50%) scale(1); }

        /* --- WHY CHOOSE US --- */
        #why-choose-us { background: #08080a; }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: var(--bg-panel);
            border: 1px solid #222;
            border-radius: 10px;
            transition: var(--transition);
        }

        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon { color: var(--secondary); transform: rotateY(180deg); }

        /* --- REGISTER FORM --- */
        #register {
            background: linear-gradient(to right, #0f0f13, #1a1a20);
            border-top: 1px solid #333;
        }

        .form-box {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(0,0,0,0.5);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid var(--primary);
            box-shadow: 0 0 30px rgba(157,0,255,0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group { margin-bottom: 1.5rem; text-align: left; }
        .form-group.full { grid-column: span 2; }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .form-control, .form-select, .form-textarea {
            width: 100%;
            padding: 12px;
            background: #050505;
            border: 1px solid #333;
            color: white;
            border-radius: 5px;
            font-family: var(--font-body);
            transition: var(--transition);
        }

        .form-control:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        
        .checkbox-group input { margin-top: 4px; accent-color: var(--primary); }
        .checkbox-group a { color: var(--secondary); text-decoration: underline; }

        /* --- TESTIMONIALS --- */
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            min-height: 250px;
        }

        .testimonial-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
            transform: translateX(20px);
            text-align: center;
            padding: 1rem;
        }

        .testimonial-item.active { opacity: 1; transform: translateX(0); position: relative; }

        .user-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid var(--secondary);
            margin-bottom: 1rem;
            object-fit: cover;
        }

        .quote { font-size: 1.1rem; font-style: italic; margin-bottom: 1rem; color: #ddd; }
        .user-name { color: var(--primary); font-weight: bold; font-family: var(--font-head); }

        /* --- NEWSLETTER --- */
        #newsletter {
            background: url('https://picsum.photos/seed/neoncity/1200/400') no-repeat center center/cover;
            position: relative;
            text-align: center;
        }
        
        #newsletter::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
        }

        .newsletter-content { position: relative; z-index: 2; }

        /* --- FOOTER --- */
        footer {
            background: black;
            padding: 4rem 0 1rem;
            border-top: 1px solid #222;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            font-family: var(--font-head);
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links li { margin-bottom: 0.8rem; list-style: none; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }

        .social-icons a {
            display: inline-flex;
            width: 35px; height: 35px;
            background: #222;
            color: white;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
            text-decoration: none;
            transition: 0.3s;
        }
        .social-icons a:hover { background: var(--primary); }

        .legal { text-align: center; font-size: 0.8rem; color: #555; margin-top: 2rem; border-top: 1px solid #222; padding-top: 1rem;}

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            padding: 20px;
        }

        .modal-overlay.active { opacity: 1; pointer-events: all; }

        .modal-content {
            background: var(--bg-panel);
            width: 100%; max-width: 700px; max-height: 85vh;
            border-radius: 10px;
            border: 1px solid var(--secondary);
            padding: 2rem;
            position: relative;
            transform: translateY(20px);
            transition: 0.3s;
            overflow-y: auto;
        }

        .modal-overlay.active .modal-content { transform: translateY(0); }
        
        .close-modal {
            position: absolute; top: 15px; right: 20px;
            font-size: 1.5rem; color: var(--text-muted); cursor: pointer;
        }
        .close-modal:hover { color: white; }

        .legal-text h3 { color: var(--primary); margin: 1rem 0 0.5rem; font-family: var(--font-head); }
        .legal-text p, .legal-text ul { margin-bottom: 1rem; font-size: 0.9rem; color: #ccc; }
        .legal-text ul { padding-left: 20px; }

        /* --- TOAST --- */
        #toast {
            visibility: hidden;
            min-width: 250px;
            background-color: var(--bg-panel);
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 16px;
            position: fixed;
            z-index: 3000;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            border-left: 5px solid var(--secondary);
            box-shadow: 0 0 20px rgba(0,0,0,0.8);
            font-family: var(--font-head);
        }

        #toast.show {
            visibility: visible;
            animation: fadein 0.5s, fadeout 0.5s 2.5s;
        }

        /* --- ANIMATIONS --- */
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} }
        @keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }

        .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
        .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

        /* --- MOBILE --- */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .nav-links {
                position: absolute; top: 100%; left: 0; width: 100%;
                background: var(--bg-deep); flex-direction: column;
                padding: 2rem; transform: scaleY(0); transform-origin: top;
                transition: 0.3s; border-bottom: 1px solid #333;
            }
            .nav-links.active { transform: scaleY(1); }
            .hamburger { display: block; }
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: span 1; }
        }
    