:root {
            --brand-primary: #FFD700;
            --brand-primary-variant: #B8860B;
            --brand-secondary: #1E88E5;
            --brand-accent: #C0C0C0;
            --bg-default: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --bg-modal: #1A1A1A;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-disabled: #666666;
            --brand-contrast: #000000;
            --semantic-success: #00C853;
            --semantic-error: #FF5252;
            --semantic-warning: #FFD600;
            --semantic-info: #2196F3;
            --border-default: #333333;
            --border-light: #444444;
            --border-active: #FFD700;
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--brand-primary); }
        h1 { font-size: 24px; margin-bottom: 15px; line-height: 1.2; }
        h2 { font-size: 20px; margin-bottom: 20px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        h3 { font-size: 14px; color: var(--text-primary); margin-top: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        a { text-decoration: none; color: inherit; }
        .container { padding: 15px; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: var(--bg-surface);
            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 var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: var(--brand-contrast); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, #2c2401 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--brand-primary); }
        .intro-card { background-color: var(--bg-surface); padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid var(--border-default); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background-color: var(--bg-surface); border-radius: 12px; padding: 8px; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; border-radius: 8px; object-fit: cover; }
        .game-provider { font-size: 11px; color: var(--text-disabled); text-transform: uppercase; margin-top: 4px; }
        .section-title { margin-top: 20px; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-surface); padding: 20px; border-radius: 15px; margin-bottom: 30px; }
        .pay-item { height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-elevated); border-radius: 6px; color: var(--text-secondary); font-size: 20px; }
        .guidelines { margin-bottom: 30px; }
        .guide-item { margin-bottom: 20px; background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--brand-primary-variant); }
        .guide-item h3 { margin-bottom: 8px; color: var(--brand-primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-container { background: var(--bg-surface); padding: 15px; border-radius: 15px; overflow: hidden; margin-bottom: 30px; border: 1px solid var(--border-default); }
        .marquee-list { display: flex; flex-direction: column; animation: scrollUp 40s linear infinite; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; justify-content: center; }
        .provider-tag { background: var(--bg-elevated); color: var(--text-primary); padding: 6px 15px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-light); }
        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-info h4 { font-size: 14px; }
        .review-info .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; margin-bottom: 10px; color: var(--brand-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-disabled); line-height: 1.4; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-row { margin-bottom: 25px; }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 20px; }
        .footer-contact a { color: var(--brand-primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; }
        .footer-links a { color: var(--text-secondary); font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            h1 { font-size: 36px; }
            .banner { aspect-ratio: 1000/500; }
        }