:root {
            --brand-primary: #D4AF37;
            --brand-light: #FAFAD2;
            --brand-dark: #996515;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4D4D;
            --bg-base: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #1F2229;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-disabled: #4A5568;
            --text-brand: #D4AF37;
            --border-default: #2D3748;
            --semantic-success: #00C853;
            --semantic-jackpot: #FF00FF;
            --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --font-numeric: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-family: var(--font-heading); font-size: 16px; font-weight: 400; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--brand-primary); color: var(--bg-base); }
        .banner-box { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            padding: 20px;
            background: linear-gradient(135deg, #1f2229 0%, #0a0b0d 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-family: var(--font-heading); color: var(--brand-primary); font-weight: 700; margin-bottom: 5px; font-size: 14px; text-transform: uppercase; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 32px; color: var(--semantic-jackpot); font-weight: 900; text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        h1 { font-family: var(--font-heading); font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.2; }
        h2 { font-family: var(--font-heading); font-size: 20px; color: var(--text-primary); margin: 30px 15px 15px; display: flex; align-items: center; gap: 10px; }
        h2::before { content: ""; width: 4px; height: 18px; background: var(--brand-primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; display: block; border: 1px solid var(--border-default); }
        .game-img-box { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-img-box img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .game-provider { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
        .payment-section { margin: 30px 15px; background: var(--bg-surface); padding: 20px; border-radius: 12px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; }
        .payment-item { display: flex; align-items: center; justify-content: center; background: #fff; padding: 5px; border-radius: 6px; height: 40px; }
        .payment-item i { font-size: 24px; color: #333; }
        .guidelines-section { padding: 0 15px; margin-top: 30px; }
        .guideline-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guideline-item h3 { font-family: var(--font-heading); color: var(--brand-primary); margin-bottom: 8px; font-size: 16px; }
        .guideline-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-surface); margin: 25px 0; padding: 15px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-track { display: flex; animation: marquee 30s linear infinite; }
        .winner-pill { flex: 0 0 auto; background: var(--bg-elevated); padding: 8px 15px; border-radius: 50px; margin-right: 15px; border: 1px solid var(--border-default); font-size: 13px; }
        .winner-pill span { color: var(--brand-primary); font-weight: 600; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .providers-wall { margin: 30px 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-surface); border: 1px solid var(--border-default); padding: 6px 12px; border-radius: 4px; font-size: 12px; color: var(--text-secondary); }
        .reviews-section { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-avatar { width: 35px; height: 35px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; color: var(--brand-primary); font-size: 15px; border-bottom: 1px solid var(--border-default); }
        .faq-a { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 30px 15px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .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-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h4 { margin-bottom: 15px; color: var(--brand-primary); }
        .contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .contact-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-grid a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 13px; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }