:root {
            --bg-main: #0B0E11;
            --bg-surface: #1A1D23;
            --bg-elevated: #252932;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --gold: #FFD700;
            --gold-glow: #FFEA70;
            --red: #E01E37;
            --emerald: #00C853;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --border-default: #2D3748;
            --font-main: 'Inter', -apple-system, sans-serif;
            --font-display: 'Montserrat', 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;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            height: 60px;
            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 .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--gold); font-family: var(--font-display); }
        header .actions { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            background: var(--bg-surface);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1A1D23 0%, #252932 100%);
            border: 2px solid var(--gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-display); color: var(--gold); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 36px; font-weight: 800; color: var(--gold-glow); text-shadow: 0 0 10px rgba(255, 234, 112, 0.5); font-family: 'Monaco', monospace; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--gold);
        }
        .intro-card h1 { font-size: 20px; color: var(--gold); margin-bottom: 10px; font-family: var(--font-display); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        h2 { font-size: 18px; font-family: var(--font-display); margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: var(--gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 13px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .trust-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .trust-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .trust-item i { display: block; font-size: 20px; color: var(--gold); margin-bottom: 5px; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-bottom: 2px solid var(--border-default); }
        .guide-item h3 { font-size: 16px; color: var(--gold); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .lottery-container { background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
        .lottery-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .lottery-row .user { color: var(--text-secondary); font-weight: 600; }
        .lottery-row .win { color: var(--emerald); font-weight: 700; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-block { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; color: var(--gold); font-weight: bold; border: 1px solid var(--gold); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: var(--gold); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-secondary); opacity: 0.6; margin-top: 8px; text-align: right; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--gold); border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .security-section {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 20px;
            border: 1px dashed var(--gold);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold); }
        .security-section p { font-size: 12px; color: var(--text-secondary); margin-top: 5px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            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; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item:active { color: var(--gold); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { color: var(--gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-secondary); opacity: 0.7; padding-top: 20px; border-top: 1px solid var(--border-default); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guide-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
        }