:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --brand-gold: #D4AF37;
            --brand-gold-light: #F2CF66;
            --brand-gold-dark: #996515;
            --accent-red: #E63946;
            --luxury-gradient: linear-gradient(135deg, #D4AF37 0%, #996515 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --win-green: #00FF41;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 80px;
        }
        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; color: var(--brand-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-gold); }
        .btn-register { background: var(--luxury-gradient); color: var(--bg-primary); }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-secondary);
            border: 2px solid var(--brand-gold-dark);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 24px;
            color: var(--brand-gold-light);
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        #jackpot-amount {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 40px;
            color: var(--win-green);
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid var(--brand-gold);
        }
        h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; margin-bottom: 10px; color: var(--brand-gold); }
        h2 { font-family: 'Montserrat', sans-serif; font-size: 20px; margin: 25px 0 15px; text-transform: uppercase; color: var(--brand-gold-light); display: flex; align-items: center; gap: 10px; }
        h2::after { content: ''; flex: 1; height: 1px; background: #333; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid #333;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            color: var(--text-secondary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-secondary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #222;
        }
        .payment-item i { font-size: 20px; color: var(--brand-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-muted); }
        .guide-section { margin-bottom: 30px; }
        .guide-card { background: var(--bg-secondary); padding: 15px; border-radius: 10px; margin-bottom: 10px; border: 1px solid #333; }
        .guide-card h3 { font-size: 16px; color: var(--brand-gold); margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 30px; }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }
        .lottery-user { color: var(--text-secondary); font-size: 14px; }
        .lottery-win { color: var(--win-green); font-weight: bold; }
        .lottery-game { color: var(--text-muted); font-size: 12px; }
        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .provider-block {
            background: var(--luxury-gradient);
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            color: var(--bg-primary);
            font-weight: bold;
            font-size: 14px;
        }
        .comment-grid { margin-bottom: 30px; }
        .comment-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--brand-gold); }
        .comment-info h4 { font-size: 14px; color: var(--text-primary); }
        .stars { color: var(--brand-gold-light); font-size: 12px; }
        .comment-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .comment-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-gold); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: #111;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--brand-gold-dark);
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--brand-gold); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: #1A1A1A;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 2px solid var(--brand-gold-dark);
            z-index: 1001;
            padding-bottom: 5px;
        }
        .nav-item { text-decoration: none; color: var(--text-muted); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; }
        .nav-item:active { color: var(--brand-gold); }
        footer { background: #080808; padding: 30px 15px 100px; color: var(--text-muted); text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--brand-gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-section { grid-template-columns: repeat(8, 1fr); }
        }