
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #ffd700;
            --primary-purple: #9b59b6;
            --neon-pink: #ff006e;
            --neon-cyan: #00f5ff;
            --neon-green: #39ff14;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --card-bg: #12121a;
            --card-hover: #1a1a25;
            --text-light: #ffffff;
            --text-muted: #8a8a9a;
            --gradient-gold: linear-gradient(135deg, #ffd700, #ff8c00);
            --gradient-purple: linear-gradient(135deg, #9b59b6, #e91e63);
            --gradient-neon: linear-gradient(135deg, #00f5ff, #ff006e);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(0, 245, 255, 0.05) 0%, transparent 40%);
            animation: bgPulse 15s ease-in-out infinite;
        }

        @keyframes bgPulse {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(2%, 2%) rotate(1deg); }
            66% { transform: translate(-2%, 1%) rotate(-1deg); }
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: float 20s infinite;
            opacity: 0.6;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(10, 10, 15, 0.98), transparent);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(10, 10, 15, 0.98);
            padding: 10px 5%;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            animation: logoGlow 2s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
            50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-neon);
            transition: width 0.3s ease;
        }

        .nav a:hover {
            color: var(--neon-cyan);
        }

        .nav a:hover::after {
            width: 100%;
        }

        .header-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
        }

        .btn-outline:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        }

        .btn-primary {
            background: var(--gradient-gold);
            color: var(--dark-bg);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
        }

        .btn-neon {
            background: var(--gradient-neon);
            color: var(--text-light);
        }

        .btn-neon:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(155, 89, 182, 0.2);
            border: 1px solid var(--primary-purple);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary-purple);
            margin-bottom: 25px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 10px rgba(155, 89, 182, 0.3); }
            50% { box-shadow: 0 0 25px rgba(155, 89, 182, 0.6); }
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero h1 span {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textShimmer 3s ease-in-out infinite;
        }

        @keyframes textShimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 5px;
        }

        /* Animated Casino Elements */
        .hero-graphics {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-card {
            position: absolute;
            font-size: 4rem;
            opacity: 0.15;
            animation: floatCard 6s ease-in-out infinite;
        }

        .floating-card:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .floating-card:nth-child(2) { top: 60%; left: 5%; animation-delay: 1s; }
        .floating-card:nth-child(3) { top: 20%; right: 10%; animation-delay: 2s; }
        .floating-card:nth-child(4) { top: 70%; right: 8%; animation-delay: 0.5s; }
        .floating-card:nth-child(5) { top: 40%; left: 15%; animation-delay: 1.5s; }
        .floating-card:nth-child(6) { top: 45%; right: 15%; animation-delay: 2.5s; }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        /* Section Styles */
        section {
            padding: 100px 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-header h2 span {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .about-features {
            display: grid;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.3s ease;
        }

        .about-feature:hover {
            border-color: var(--primary-gold);
            transform: translateX(10px);
            box-shadow: 0 5px 30px rgba(255, 215, 0, 0.1);
        }

        .about-feature i {
            font-size: 1.5rem;
            color: var(--primary-gold);
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            background: var(--gradient-purple);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            position: relative;
            overflow: hidden;
            animation: aboutGlow 4s ease-in-out infinite;
        }

        @keyframes aboutGlow {
            0%, 100% { box-shadow: 0 0 40px rgba(155, 89, 182, 0.3); }
            50% { box-shadow: 0 0 80px rgba(155, 89, 182, 0.5); }
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Games Section */
        .games {
            background: var(--dark-bg);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary-gold);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
        }

        .game-card:hover::before {
            opacity: 1;
        }

        .game-image {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .game-card:nth-child(1) .game-image { background: linear-gradient(135deg, #1a1a2e, #16213e); }
        .game-card:nth-child(2) .game-image { background: linear-gradient(135deg, #2d132c, #801336); }
        .game-card:nth-child(3) .game-image { background: linear-gradient(135deg, #0f3460, #16213e); }
        .game-card:nth-child(4) .game-image { background: linear-gradient(135deg, #1e3a5f, #155263); }
        .game-card:nth-child(5) .game-image { background: linear-gradient(135deg, #3a1c71, #d76d77); }
        .game-card:nth-child(6) .game-image { background: linear-gradient(135deg, #134e5e, #71b280); }
        .game-card:nth-child(7) .game-image { background: linear-gradient(135deg, #232526, #414345); }
        .game-card:nth-child(8) .game-image { background: linear-gradient(135deg, #4e54c8, #8f94fb); }
        .game-card:nth-child(9) .game-image { background: linear-gradient(135deg, #c33764, #1d2671); }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .play-btn {
            padding: 15px 35px;
            background: var(--gradient-gold);
            border: none;
            border-radius: 50px;
            color: var(--dark-bg);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .game-card:hover .play-btn {
            transform: translateY(0);
        }

        .game-info {
            padding: 25px;
        }

        .game-info h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .game-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .game-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .game-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--primary-gold);
        }

        .game-players {
            font-size: 0.85rem;
            color: var(--neon-green);
        }

        /* Why Choose Us */
        .why-us {
            background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            transition: all 0.6s ease;
        }

        .why-card:hover::before {
            top: -50%;
            left: -50%;
        }

        .why-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--gradient-purple);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
        }

        .why-card:hover .why-icon {
            transform: scale(1.1) rotate(10deg);
            background: var(--gradient-gold);
        }

        .why-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .why-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Latest Betting */
        .betting {
            background: var(--darker-bg);
            overflow: hidden;
        }

        .betting-ticker {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .ticker-wrapper {
            overflow: hidden;
            position: relative;
        }

        .ticker-track {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .ticker-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 30px;
            margin: 0 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            min-width: 300px;
        }

        .ticker-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .ticker-info h4 {
            font-size: 0.95rem;
            margin-bottom: 3px;
        }

        .ticker-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .ticker-amount {
            margin-left: auto;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            color: var(--neon-green);
        }

        /* Register Form */
        .register {
            background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
            position: relative;
        }

        .register-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--card-bg);
            padding: 50px;
            border-radius: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .register-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-gold);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--text-light);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-light);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .form-group select option {
            background: var(--card-bg);
            color: var(--text-light);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 20px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 22px;
            height: 22px;
            accent-color: var(--primary-gold);
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--text-muted);
            cursor: pointer;
        }

        .checkbox-group label a {
            color: var(--primary-gold);
            text-decoration: none;
        }

        .checkbox-group label a:hover {
            text-decoration: underline;
        }

        .form-submit {
            width: 100%;
            padding: 18px;
            background: var(--gradient-gold);
            border: none;
            border-radius: 12px;
            color: var(--dark-bg);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 60px 30px;
        }

        .success-message.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 30px;
            animation: successPulse 1s ease-in-out infinite;
        }

        @keyframes successPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 245, 255, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0, 245, 255, 0.8); }
        }

        .success-message h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .success-message p {
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        /* Testimonials */
        .testimonials {
            background: var(--dark-bg);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--card-bg);
            padding: 35px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .testimonial-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card:hover {
            border-color: var(--primary-gold);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .testimonial-info h4 {
            font-size: 1.1rem;
            margin-bottom: 3px;
        }

        .testimonial-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .testimonial-stars {
            margin-left: auto;
            color: var(--primary-gold);
        }

        .testimonial-text {
            color: var(--text-muted);
            font-style: italic;
            line-height: 1.8;
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 80px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: var(--card-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--gradient-gold);
            color: var(--dark-bg);
            transform: translateY(-5px);
        }

        .footer-links h4 {
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-gold);
            text-decoration: none;
        }

        /* Modal Styles */
        .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: 50px 20px;
        }

        .modal.active {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: var(--card-bg);
            max-width: 900px;
            width: 100%;
            border-radius: 20px;
            padding: 50px;
            position: relative;
            border: 1px solid rgba(255, 215, 0, 0.2);
            margin: auto;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: var(--text-light);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--neon-pink);
            transform: rotate(90deg);
        }

        .modal h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 30px;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-body {
            color: var(--text-muted);
            line-height: 1.8;
        }

        .modal-body h3 {
            color: var(--text-light);
            margin: 30px 0 15px;
            font-size: 1.3rem;
        }

        .modal-body ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .modal-body li {
            margin-bottom: 10px;
        }

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-form {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.2);
        }

        /* Login Modal */
        .login-modal .modal-content {
            max-width: 450px;
        }

        .login-tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .login-tab {
            flex: 1;
            padding: 15px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .login-tab.active {
            color: var(--primary-gold);
        }

        .login-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-gold);
        }

        .login-form-content {
            display: none;
        }

        .login-form-content.active {
            display: block;
            animation: fadeInUp 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-stats {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .header-buttons {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .stat-value {
                font-size: 2rem;
            }

            section {
                padding: 60px 5%;
            }

            .register-container {
                padding: 30px 20px;
            }

            .modal-content {
                padding: 30px 20px;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--darker-bg);
            z-index: 999;
            padding: 100px 30px 30px;
        }

        .mobile-menu.active {
            display: flex;
            flex-direction: column;
            animation: fadeIn 0.3s ease;
        }

        .mobile-menu a {
            display: block;
            padding: 20px 0;
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--primary-gold);
        }

        .mobile-menu-buttons {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
    