:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #E01E37;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0B0B;
            --bg-sec: #161616;
            --bg-surf: #1F1F1F;
            --text-main: #FFFFFF;
            --text-sec: #B0B0B0;
            --border-def: #2C2C2C;
            --font-main: 'Montserrat', sans-serif;
            --font-display: 'Lexend', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-main); font-family: var(--font-main); line-height: 1.5; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        header { background: var(--bg-sec); border-bottom: 1px solid var(--border-def); padding: 12px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
        .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: 500; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--gold-grad); color: #000; }
        .btn:active { transform: scale(0.95); }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 15px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: var(--bg-surf); border: 2px solid var(--secondary); border-radius: 15px; padding: 15px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: var(--text-sec); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { color: var(--primary); font-family: var(--font-display); font-size: 32px; margin-top: 5px; font-weight: 900; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .intro-card { background: var(--bg-sec); padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary); margin-bottom: 20px; }
        .intro-card h1 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; color: var(--primary); }
        .intro-card p { font-size: 14px; color: var(--text-sec); text-align: justify; }
        .section-title { font-family: var(--font-display); font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-sec); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-def); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-main); font-size: 13px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-license { background: var(--bg-sec); padding: 20px; border-radius: 15px; margin: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .pl-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .pl-item i { font-size: 20px; color: var(--secondary); }
        .pl-item span { font-size: 10px; color: var(--text-sec); font-weight: 600; }
        .guide-section { margin-bottom: 20px; }
        .guide-card { background: var(--bg-surf); padding: 15px; border-radius: 12px; margin-bottom: 10px; border-bottom: 1px solid var(--border-def); }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-card p { font-size: 13px; color: var(--text-sec); }
        .winning-records { background: var(--bg-sec); border-radius: 15px; overflow: hidden; margin: 20px 0; }
        .win-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--border-def); font-size: 12px; }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-game { color: var(--text-main); }
        .win-amount { color: var(--accent); font-weight: 700; }
        .providers-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-tag { background: var(--bg-surf); padding: 12px; border-radius: 8px; text-align: center; font-weight: 700; color: var(--text-sec); border: 1px solid var(--border-def); }
        .review-card { background: var(--bg-surf); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-top: 2px solid var(--secondary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-sec); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-sec); font-style: italic; margin-bottom: 5px; }
        .review-date { font-size: 11px; color: var(--text-sec); opacity: 0.6; }
        .faq-item { background: var(--bg-sec); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-title { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; color: var(--primary); }
        .faq-content { padding: 0 15px 15px; font-size: 13px; color: var(--text-sec); }
        .security-section { background: #000; padding: 20px; border-radius: 15px; text-align: center; margin-top: 30px; border: 1px dashed var(--secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-sec); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-sec); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-def); z-index: 1001; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-sec); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        footer { background: var(--bg-sec); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-def); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; font-weight: 600; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-sec); text-decoration: none; font-size: 12px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { font-size: 11px; color: var(--text-sec); border-top: 1px solid var(--border-def); pt: 15px; }