:root {
            --primary: #D4AF37;
            --secondary: #FFD700;
            --accent: #B8860B;
            --gold-start: #FBF5B7;
            --gold-end: #AA771C;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --on-brand: #000000;
            --success: #2ECC71;
            --win: #00FF41;
            --border: #2D2D2D;
            --font-main: 'Montserrat', 'Inter', sans-serif;
            --font-heading: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; -webkit-tap-highlight-color: transparent; }
        header { height: 60px; background: var(--bg-surface); display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
        .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: 400; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 6px 15px; border-radius: 4px; font-size: 14px; cursor: pointer; font-weight: 500; }
        .btn-register { background: linear-gradient(to bottom, var(--gold-start), var(--gold-end)); color: var(--on-brand); border: none; padding: 6px 15px; border-radius: 4px; font-size: 14px; cursor: pointer; font-weight: 600; }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: var(--bg-elevated); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid var(--accent); text-align: center; background-image: radial-gradient(circle at center, #2c240b 0%, #161616 100%); }
        .jackpot-title { font-family: var(--font-heading); font-size: 14px; color: var(--secondary); text-transform: uppercase; margin-bottom: 10px; letter-spacing: 2px; }
        .jackpot-amount { font-family: var(--font-heading); font-size: 32px; font-weight: 900; background: linear-gradient(to bottom, var(--gold-start), var(--gold-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4)); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 22px; color: var(--secondary); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-header { margin: 25px 15px 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; border-bottom: 2px solid var(--primary); padding-bottom: 4px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .game-image { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-image img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .payment-item { background: var(--bg-elevated); padding: 12px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 6px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); display: block; }
        .guide-section { padding: 0 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border); }
        .guide-card h3 { font-size: 16px; color: var(--secondary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-container { margin: 15px; background: var(--bg-surface); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--border); }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { font-size: 14px; color: var(--text-primary); }
        .lottery-game { font-size: 12px; color: var(--text-muted); }
        .lottery-win { font-size: 14px; color: var(--win); font-weight: bold; }
        .lottery-time { font-size: 10px; color: var(--text-muted); }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-box { padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; font-size: 14px; background: var(--bg-elevated); border: 1px solid var(--accent); color: var(--primary); }
        .comment-grid { padding: 0 15px; }
        .comment-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border); }
        .comment-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 35px; height: 35px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); border: 1px solid var(--primary); }
        .comment-user { font-weight: 600; font-size: 14px; flex-grow: 1; }
        .comment-stars { color: var(--secondary); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--secondary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
        .security-badges i { font-size: 24px; color: var(--success); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .security-links a { color: var(--primary); font-size: 11px; text-decoration: none; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border); z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-muted); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border); }
        .footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-secondary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .footer-copy { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 20px; }