@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;900&display=swap');
        :root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F9E076;
            --brand-secondary: #B22222;
            --brand-accent: #006400;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #1F1F1F;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #6B6B6B;
            --text-brand: #D4AF37;
            --text-inverse: #0A0A0A;
            --semantic-success: #2ECC71;
            --semantic-error: #E74C3C;
            --semantic-warning: #F1C40F;
            --semantic-info: #3498DB;
            --border-subtle: #262626;
            --border-default: #333333;
            --border-active: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-brand); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left strong { font-size: 16px; font-weight: 500; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; border: 1px solid var(--brand-primary); color: var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
            background: #000;
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-elevated), #2a2a2a);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-size: 14px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 900; color: var(--brand-primary); letter-spacing: 1px; }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 18px; border-left: 4px solid var(--brand-primary); margin-left: 15px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .game-img-wrapper { aspect-ratio: 1/1; background: #222; overflow: hidden; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .trust-section { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; text-align: center; }
        .trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .trust-grid i { font-size: 24px; color: var(--text-secondary); }
        .guideline-section { margin: 15px; display: grid; gap: 15px; }
        .guideline-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guideline-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-primary); }
        .guideline-card p { font-size: 13px; color: var(--text-secondary); }
        .marquee-container {
            background: var(--bg-surface);
            margin: 15px 0;
            padding: 10px 0;
            overflow: hidden;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { white-space: nowrap; font-size: 13px; color: var(--text-secondary); }
        .winner-item span { color: var(--semantic-success); font-weight: bold; }
        .providers-wall { margin: 15px; padding: 15px; background: var(--bg-surface); border-radius: 10px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-elevated); padding: 5px 12px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-subtle); color: var(--text-secondary); }
        .review-grid { margin: 15px; display: grid; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user-info { flex: 1; }
        .review-user-name { font-weight: bold; font-size: 14px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .star-rating { color: var(--semantic-warning); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); }
        .faq-section { margin: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--brand-primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 15px 15px 100px 15px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--brand-accent); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            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 { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-surface); padding: 30px 15px 40px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { font-size: 13px; color: var(--brand-primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copyright { text-align: center; font-size: 12px; color: var(--text-muted); }