:root {
            --primary: #D4AF37;
            --primary-light: #F1D279;
            --primary-dark: #AA8A2E;
            --secondary: #00E676;
            --accent: #FF3D00;
            --bg-base: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-subtle: #333333;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: transform 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: var(--primary); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #1A1A1A 0%, #000 100%);
            padding: 20px;
            margin: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
        }
        .jackpot-title { font-size: 14px; color: var(--primary-light); text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            color: var(--primary);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 20px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.3s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-secondary); }
        .trust-section { background: var(--bg-surface); padding: 20px 15px; margin-top: 30px; }
        .payment-icons, .provider-wall { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; align-items: center; opacity: 0.7; margin-top: 15px; }
        .payment-icons i, .provider-wall span { font-size: 24px; color: var(--text-secondary); }
        .guidelines { padding: 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; border-left: 2px solid var(--primary); }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary-light); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: #111; padding: 15px 0; overflow: hidden; position: relative; margin: 20px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: var(--bg-elevated); padding: 8px 15px; margin: 0 10px; border-radius: 20px; font-size: 13px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--border-subtle); }
        .winner-amount { color: var(--secondary); font-weight: bold; }
        .reviews-grid { padding: 15px; display: grid; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .stars { color: #FFD600; font-size: 12px; }
        .review-date { font-size: 12px; color: var(--text-muted); float: right; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 15px; }
        .faq-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary-light); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-footer { text-align: center; padding: 30px 15px; background: #000; margin-top: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 18px; color: var(--primary); }
        footer { background: #050505; padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); pt: 20px; }