:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #E60012;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-highlight: #FFD700;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-primary); 
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(to right, var(--grad-start), var(--grad-end));
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 20px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            font-family: var(--font-primary);
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: #000; }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }

        main { padding: 0 5%; padding-bottom: 80px; }
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            border-radius: 15px; 
            margin-top: 20px; 
            overflow: hidden;
            border: 2px solid var(--border-medium);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background: var(--bg-surface);
            border-radius: 15px;
            border: 1px solid var(--border-strong);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-heading); 
            font-size: 40px; 
            color: var(--primary); 
            font-weight: bold; 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: linear-gradient(135deg, var(--bg-surface), #000);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 40px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            font-size: 32px; 
            color: var(--primary); 
            margin-bottom: 15px; 
            line-height: 1.2;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin: 40px 0 20px; 
            text-align: center;
            text-transform: uppercase;
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: 0.3s; 
            border: 1px solid var(--border-light);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
            display: block; 
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 15px; 
            color: var(--text-primary); 
            text-align: center; 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

        .payment-licenses { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin: 30px 0; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            text-align: center; 
            border-radius: 10px; 
            font-size: 12px; 
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

        .guides-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px;
        }
        .guide-item { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-light);
        }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }

        .win-records { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            border: 1px solid var(--border-light);
        }
        .win-row { 
            display: grid; 
            grid-template-columns: 1fr 1fr 1fr 1fr; 
            padding: 12px; 
            border-bottom: 1px solid var(--border-light); 
            font-size: 13px; 
            text-align: center;
            align-items: center;
        }
        .win-row:nth-child(even) { background: rgba(255,255,255,0.02); }
        .win-row .amount { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin: 30px 0;
        }
        .provider-box { 
            padding: 15px; 
            text-align: center; 
            font-weight: bold; 
            border-radius: 8px; 
            text-transform: uppercase;
            font-size: 14px;
        }
        .provider-box:nth-child(odd) { background: var(--secondary); color: #000; }
        .provider-box:nth-child(even) { background: var(--primary); color: #000; }

        .reviews-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
        }
        .review-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-light);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-header .name { font-weight: bold; }
        .review-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { 
            display: grid; 
            gap: 15px; 
            margin-bottom: 40px;
        }
        .faq-item { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 10px; 
            border: 1px solid var(--border-light);
        }
        .faq-item h3 { color: var(--primary); font-size: 17px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-section { 
            text-align: center; 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 20px; 
            border: 1px solid var(--border-medium);
        }
        .security-badges { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .badge { display: flex; align-items: center; gap: 8px; color: var(--text-primary); font-weight: bold; }
        .badge i { color: var(--success); font-size: 24px; }
        .security-text { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
        .security-text a { color: var(--primary); text-decoration: none; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            background: var(--bg-surface); 
            display: grid; 
            grid-template-columns: repeat(5, 1fr); 
            border-top: 2px solid var(--primary); 
            z-index: 1000;
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            padding: 12px 0; 
            text-decoration: none; 
            color: var(--text-secondary); 
            font-size: 11px; 
            gap: 5px;
        }
        .nav-item i { font-size: 18px; color: var(--text-primary); }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--grad-end); 
            padding: 40px 5% 120px; 
            border-top: 1px solid var(--border-light); 
            text-align: center; 
        }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: 0.3s; }
        .footer-contact a:hover { color: var(--primary); }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            text-align: left; 
            max-width: 800px; 
            margin: 0 auto 30px; 
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-links a:hover { color: var(--text-primary); }
        .copyright { color: var(--text-muted); font-size: 13px; margin-top: 30px; }

        @media (max-width: 768px) {
            .payment-licenses { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }