:root {
            --primary-gold: #D4AF37;
            --primary-gold-hover: #F9E076;
            --secondary-royal-blue: #0A192F;
            --accent-gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --main-dark: #050505;
            --surface-dark: #121212;
            --elevated-dark: #1E1E1E;
            --overlay: rgba(0, 0, 0, 0.85);
            --primary-white: #FFFFFF;
            --secondary-gray: #B0B0B0;
            --muted-gray: #666666;
            --brand-gold: #D4AF37;
            --inverse-black: #000000;
            --success-green: #00C853;
            --error-red: #FF5252;
            --win-highlight: #FFD700;
            --border-default: #2C2C2C;
            --border-active-gold: #D4AF37;
            --heading-font: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --body-font: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-dark);
            color: var(--primary-white);
            font-family: var(--body-font);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--secondary-royal-blue);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--primary-gold);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-family: var(--heading-font); font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--accent-gold-gradient); color: var(--inverse-black); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--surface-dark);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
            text-align: center;
        }
        .jackpot-title { color: var(--brand-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            color: var(--win-highlight);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-card { margin: 15px; padding: 20px; background: var(--surface-dark); border-radius: 15px; }
        .intro-card h1 { font-family: var(--heading-font); font-size: 24px; color: var(--brand-gold); margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: var(--secondary-gray); }
        .section-title { padding: 0 15px; margin: 20px 0 15px; font-family: var(--heading-font); font-size: 20px; border-left: 4px solid var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--elevated-dark); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--primary-white); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--surface-dark);
            margin: 15px;
            border-radius: 12px;
        }
        .payment-item { text-align: center; font-size: 10px; color: var(--secondary-gray); }
        .payment-item i { font-size: 24px; color: var(--brand-gold); display: block; margin-bottom: 5px; }
        .guides-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-box { background: var(--surface-dark); padding: 15px; border-radius: 12px; border-left: 2px solid var(--primary-gold); }
        .guide-box h3 { color: var(--brand-gold); margin-bottom: 8px; font-size: 16px; }
        .guide-box p { font-size: 13px; color: var(--secondary-gray); }
        .lottery-section { margin: 15px; background: var(--surface-dark); border-radius: 12px; padding: 15px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 12px; }
        .lottery-item span:nth-child(2) { color: var(--success-green); font-weight: bold; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-tag { background: var(--secondary-royal-blue); color: var(--brand-gold); padding: 12px; text-align: center; border-radius: 8px; font-weight: bold; border: 1px solid var(--primary-gold); }
        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--elevated-dark); padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-gold); }
        .stars { color: var(--win-highlight); font-size: 12px; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--surface-dark); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--brand-gold); }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--secondary-gray); }
        .security-section { margin: 15px; background: var(--surface-dark); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success-green); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--secondary-royal-blue);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary-gold);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--secondary-gray); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: #000; padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--brand-gold); font-size: 13px; text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--secondary-gray); font-size: 13px; text-decoration: none; }
        .copyright { text-align: center; font-size: 11px; color: var(--muted-gray); border-top: 1px solid var(--border-subtle); padding-top: 15px; }