:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #222224;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --border-default: #2D2D30;
            --win-color: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--primary); }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 8px; }
        .btn { border: none; padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 16px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #161618 0%, #222224 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; }
        .jackpot-value { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--win-color); margin: 10px 0; }
        .intro-card { background: var(--bg-surface); padding: 24px; border-radius: 12px; margin-bottom: 24px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-size: 20px; margin: 24px 0 16px; display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
        .payment-item { background: var(--bg-surface); padding: 12px 5px; border-radius: 8px; text-align: center; font-size: 10px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 18px; color: var(--primary); margin-bottom: 5px; display: block; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-card h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-list { background: var(--bg-surface); border-radius: 12px; padding: 10px; margin-bottom: 24px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary); font-weight: 600; }
        .lottery-win { color: var(--win-color); font-weight: 700; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
        .provider-item { background: var(--primary-variant); color: #fff; padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .comment-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-top: 3px solid var(--primary); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .comment-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .comment-info h3 { font-size: 15px; }
        .comment-stars { color: #FFD700; font-size: 12px; }
        .faq-section { background: var(--bg-surface); border-radius: 12px; padding: 10px; margin-bottom: 24px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-question { color: var(--primary); font-weight: 700; margin-bottom: 8px; display: block; }
        .faq-answer { color: var(--text-secondary); font-size: 14px; }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--border-default); }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-links a { color: var(--primary); text-decoration: underline; font-size: 13px; margin: 0 5px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer { background: #000; padding: 40px 16px 100px; text-align: center; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { color: var(--text-secondary); font-size: 12px; border-top: 1px solid var(--border-default); pt: 20px; }