:root {
            --bg-primary: #0A0A0B;
            --bg-secondary: #141417;
            --bg-tertiary: #1E1E24;
            --surface: #25252D;
            --gold-primary: #FFD700;
            --gold-secondary: #D4AF37;
            --accent-yellow: #FFEA00;
            --grad-start: #BF953F;
            --grad-end: #AA771C;
            --win: #00C853;
            --loss: #FF1744;
            --jackpot: #FF3D00;
            --text-main: #FFFFFF;
            --text-sec: #B0B0B0;
            --text-muted: #757575;
            --border-def: #333333;
            --border-focus: #D4AF37;
            --font-main: 'Montserrat', sans-serif;
            --font-sec: 'Inter', sans-serif;
            --font-display: 'Bebas Neue', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-primary); color: var(--text-main); font-family: var(--font-main); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        header { background: rgba(10, 10, 11, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-def); height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold-primary); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--border-def); }
        .btn-reg { background: linear-gradient(to right, var(--grad-start), var(--grad-end)); color: #000; }
        .main-container { max-width: 600px; margin: 0 auto; padding: 15px; }
        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 15px; margin-bottom: 20px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card { background: var(--bg-secondary); border: 2px solid var(--gold-secondary); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-label { font-family: var(--font-display); font-size: 24px; color: var(--jackpot); letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 48px; color: var(--gold-primary); text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
        .intro-card { background: var(--bg-secondary); border-radius: 15px; padding: 20px; margin-bottom: 20px; border: 1px solid var(--border-def); }
        .intro-card h1 { font-size: 18px; color: var(--gold-primary); margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-sec); }
        .section-title { font-family: var(--font-display); font-size: 24px; color: var(--gold-primary); margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }
        .game-card { background: var(--bg-tertiary); 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 { font-size: 14px; color: var(--text-main); padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { background: var(--surface); border-radius: 15px; padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 20px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--gold-secondary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-sec); display: block; }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-secondary); border-radius: 12px; padding: 15px; border-left: 4px solid var(--gold-primary); }
        .guide-card h3 { font-size: 16px; color: var(--gold-primary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-sec); }
        .lottery-box { background: var(--bg-tertiary); border-radius: 15px; padding: 15px; margin-bottom: 20px; border: 1px solid var(--border-def); }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-def); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--gold-primary); font-weight: 600; }
        .lottery-win { color: var(--win); font-weight: 700; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: var(--surface); padding: 12px; border-radius: 8px; text-align: center; color: var(--gold-primary); font-weight: 700; font-size: 14px; border: 1px solid var(--border-def); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-secondary); border-radius: 12px; padding: 15px; border: 1px solid var(--border-def); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--gold-secondary); }
        .review-name { font-weight: 600; font-size: 14px; flex-grow: 1; }
        .review-rating { color: var(--accent-yellow); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-sec); font-style: italic; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); text-align: right; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-secondary); border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-def); }
        .faq-item h3 { font-size: 15px; color: var(--gold-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-sec); }
        .security-section { background: var(--surface); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold-secondary); }
        .security-text { font-size: 12px; color: var(--text-sec); margin-bottom: 10px; }
        .security-links a { color: var(--gold-primary); text-decoration: none; font-size: 12px; margin: 0 5px; font-weight: 600; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-def); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-sec); font-size: 11px; gap: 5px; width: 20%; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { margin-top: -30px; }
        .nav-item:nth-child(3) .nav-icon-bg { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4); }
        footer { background: var(--bg-primary); padding: 30px 15px 100px; border-top: 1px solid var(--border-def); text-align: center; }
        .footer-row { margin-bottom: 25px; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-contact a { color: var(--text-sec); text-decoration: none; font-size: 14px; border: 1px solid var(--border-def); padding: 5px 12px; border-radius: 15px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; padding: 3px 0; }
        .copyright { color: var(--text-muted); font-size: 11px; margin-top: 30px; border-top: 1px solid var(--border-def); padding-top: 15px; }