:root {
            --bg-primary: #0F111A;
            --bg-secondary: #1A1D29;
            --bg-tertiary: #252936;
            --brand-primary: #FFD700;
            --brand-variant: #C5A028;
            --accent: #B11226;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6B7280;
            --border-default: #2D333B;
            --win-color: #00FF7F;
            --radius: 12px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 80px;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--brand-primary); text-transform: uppercase; }
        h1 { font-size: 28px; text-align: center; margin: 20px 0; padding: 0 15px; }
        h2 { font-size: 22px; margin-bottom: 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        h3 { font-size: 14px; margin-top: 8px; color: var(--text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

        header {
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-reg { background: var(--gold-grad); color: #000; }
        .btn:active { transform: scale(0.95); }

        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            margin: 15px;
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; margin-bottom: 5px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 800; font-family: 'Montserrat', sans-serif; color: var(--win-color); text-shadow: 0 0 10px rgba(0, 255, 127, 0.3); }

        .section-padding { padding: 25px 15px; }
        .intro-text { color: var(--text-secondary); font-size: 16px; text-align: center; margin-bottom: 20px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: var(--bg-secondary); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); display: block; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }

        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; gap: 12px; background: var(--bg-secondary); padding: 10px; border-radius: var(--radius); text-decoration: none; border: 1px solid var(--border-default); }
        .article-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .article-card h3 { font-size: 15px; color: var(--brand-primary); white-space: normal; line-height: 1.3; }
        .article-card p { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 15px; }
        .pay-item { background: var(--bg-tertiary); padding: 12px 5px; text-align: center; border-radius: 8px; font-size: 10px; color: var(--text-secondary); }
        .pay-item i { font-size: 20px; color: var(--brand-primary); display: block; margin-bottom: 5px; }

        .lottery-scroll { background: var(--bg-secondary); border-radius: var(--radius); padding: 10px; height: 250px; overflow-y: auto; border: 1px solid var(--border-default); }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .win-amount { color: var(--win-color); font-weight: 700; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--bg-tertiary); padding: 15px; text-align: center; border-radius: var(--radius); font-weight: 700; color: var(--brand-primary); border: 1px solid var(--border-default); }

        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: var(--radius); margin-bottom: 15px; border-left: 3px solid var(--brand-primary); }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { font-size: 24px; color: var(--text-muted); }
        .star-rating { color: #FFC107; font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 700; color: var(--brand-primary); display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-default); }
        .faq-a { padding: 15px; font-size: 14px; color: var(--text-secondary); background: rgba(255,255,255,0.02); }

        .security-section { text-align: center; background: var(--bg-tertiary); padding: 25px 15px; margin-top: 20px; border-radius: var(--radius); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-primary); }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid var(--accent); color: var(--accent); border-radius: 50%; font-weight: 800; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary); height: 70px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 11px; display: flex; flex-direction: column; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item:active { color: var(--brand-primary); }

        footer { background: var(--bg-primary); padding: 40px 15px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }