:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --gold: #FFD700;
            --white: #ffffff;
            --text-gray: #b1b1b1;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-dark);
            color: var(--white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background: rgba(26, 29, 36, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: var(--white); border: 1px solid var(--white); }
        .btn-register { background: var(--cta-gradient); color: var(--white); }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-container {
            background: #000;
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 15px;
            border: 2px solid var(--gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-size: 18px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: var(--white); text-shadow: 0 0 10px var(--gold); }
        .intro-card { padding: 20px; text-align: center; background: var(--bg-card); margin: 15px; border-radius: 15px; }
        .intro-card h1 { font-size: 22px; color: var(--gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 0 20px; margin: 25px 0 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: var(--gold); margin-top: 4px; }
        .payments-section, .providers-section { padding: 20px 15px; background: var(--bg-card); margin: 20px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 24px; color: var(--text-gray); }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 10px; }
        .provider-tag { background: var(--bg-dark); color: var(--gold); padding: 5px 12px; border-radius: 5px; font-size: 12px; border: 1px solid rgba(255, 215, 0, 0.3); }
        .guidelines { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-card); padding: 15px; border-radius: 12px; border-left: 3px solid var(--gold); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--gold); }
        .guide-item p { font-size: 13px; color: var(--text-gray); }
        .marquee-container { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .win-record { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); padding: 8px 15px; margin: 0 10px; border-radius: 20px; font-size: 12px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .review-card { background: var(--bg-card); 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(--gold); }
        .review-info h4 { font-size: 15px; }
        .review-stars { color: var(--gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); position: absolute; top: 15px; right: 15px; }
        .review-content { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 10px; background: var(--bg-card); border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; color: var(--gold); border-bottom: 1px solid rgba(255,255,255,0.05); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-gray); }
        .security-section { padding: 25px 15px; text-align: center; background: #000; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold); }
        .security-text { font-size: 12px; color: var(--text-gray); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid rgba(255, 215, 0, 0.2); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-gray); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--gold); }
        footer { background: #111; padding: 30px 15px 100px; text-align: center; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact a { color: var(--white); margin: 0 10px; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: var(--text-gray); padding-top: 20px; border-top: 1px solid #222; }