
        :root {
            --bg-dark: #050505;
            --bg-card: #121212;
            --bg-card-hover: #1a1a1a;
            --accent-primary: #00ffcc; /* Neon Cyan */
            --accent-secondary: #ff00ff; /* Neon Magenta */
            --accent-gold: #ffd700;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --font-heading: 'Orbitron', sans-serif;
            --font-body: 'Rajdhani', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- Utilities --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--accent-primary), var(--text-main), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }

        .btn {
            padding: 12px 30px;
            font-family: var(--font-heading);
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--accent-primary), #00b8a3);
            color: #000;
            box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 255, 204, 0.7);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--accent-secondary);
            color: var(--accent-secondary);
        }

        .btn-secondary:hover {
            background: var(--accent-secondary);
            color: #fff;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
        }

        /* --- Particle Background --- */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.4;
        }

        /* --- Header --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(5, 5, 5, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--text-main);
            text-decoration: none;
        }

        .logo span { color: var(--accent-primary); }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover { color: var(--accent-primary); }

        .auth-buttons { display: flex; gap: 15px; }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
        }

        .hero p {
            font-size: 1.5rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .hero-visual {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(circle at center, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        /* --- About Section --- */
        .about {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .about-stats {
            display: flex;
            gap: 30px;
        }

        .stat-item h3 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--accent-gold);
        }

        /* --- Games Section --- */
        .games {
            padding: 100px 0;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .game-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-primary);
        }

        .game-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .game-card:hover .game-img { opacity: 0.3; }

        .game-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, #000, transparent);
            transform: translateY(20px);
            transition: transform 0.3s;
        }

        .game-card:hover .game-info { transform: translateY(0); }

        .game-info h4 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--accent-primary);
            margin-bottom: 5px;
        }

        .game-info p {
            font-size: 0.9rem;
            color: #fff;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .game-card:hover .game-info p { opacity: 1; }

        /* --- Why Choose Us --- */
        .why-us {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-box {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.3s;
        }

        .feature-box:hover {
            background: var(--bg-card-hover);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--accent-secondary);
            margin-bottom: 20px;
            animation: float 3s ease-in-out infinite;
        }

        .feature-box h4 {
            font-family: var(--font-heading);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        /* --- Latest Betting Ticker --- */
        .ticker-wrap {
            width: 100%;
            background: #000;
            overflow: hidden;
            padding: 15px 0;
            border-top: 1px solid var(--accent-primary);
            border-bottom: 1px solid var(--accent-primary);
        }

        .ticker {
            display: flex;
            width: fit-content;
            animation: ticker 30s linear infinite;
        }

        .ticker-item {
            padding: 0 40px;
            font-family: var(--font-heading);
            color: var(--accent-gold);
            white-space: nowrap;
            font-size: 1.1rem;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- Register Form --- */
        .register-section {
            padding: 100px 0;
            position: relative;
        }

        .form-container {
            background: rgba(20, 20, 20, 0.95);
            border: 1px solid var(--accent-primary);
            padding: 40px;
            border-radius: 15px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 0 50px rgba(0, 255, 204, 0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group.full { grid-column: 1 / -1; }

        label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent-primary);
            font-family: var(--font-heading);
            font-size: 0.9rem;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            background: #0a0a0a;
            border: 1px solid #333;
            color: #fff;
            border-radius: 5px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-secondary);
            box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .checkbox-group input { width: auto; }

        /* --- Testimonials --- */
        .testimonials {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-gold);
            position: relative;
        }

        .testimonial-card i {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.1);
        }

        .testimonial-text {
            font-style: italic;
            color: #ddd;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-family: var(--font-heading);
            color: var(--accent-primary);
        }

        /* --- Footer --- */
        footer {
            background: #000;
            padding: 60px 0 20px;
            border-top: 1px solid #222;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h5 {
            font-family: var(--font-heading);
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: var(--accent-primary); }

        .social-icons { display: flex; gap: 15px; }
        .social-icons a {
            width: 40px; height: 40px;
            background: #222;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
            color: #fff;
            transition: 0.3s;
        }
        .social-icons a:hover { background: var(--accent-primary); color: #000; }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #222;
            color: #555;
            font-size: 0.9rem;
        }

        /* --- Modules (Modals) --- */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            overflow-y: auto;
            padding: 40px 20px;
        }

        .modal-content {
            background: var(--bg-card);
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--accent-primary);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 20px; right: 20px;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
        }

        .modal h2 { font-family: var(--font-heading); color: var(--accent-primary); margin-bottom: 20px; }
        .modal p { margin-bottom: 15px; color: #ccc; line-height: 1.8; }

        /* --- Newsletter --- */
        .newsletter-box {
            background: linear-gradient(45deg, #111, #1a1a1a);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #333;
        }

        /* --- Animations --- */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .nav-links { display: none; } /* Simple hide for mobile demo */
            .form-grid { grid-template-columns: 1fr; }
            .about-content { grid-template-columns: 1fr; }
        }

        /* --- Success Message --- */
        .success-msg {
            display: none;
            background: rgba(0, 255, 204, 0.1);
            border: 1px solid var(--accent-primary);
            color: var(--accent-primary);
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            border-radius: 5px;
            font-family: var(--font-heading);
        }
    