:root {
            --primary: #FFD700;
            --secondary: #C5A021;
            --accent: #E6B800;
            --gold-start: #FFD700;
            --gold-end: #8B6914;
            --bg-main: #0A0A0A;
            --bg-surface: #141414;
            --bg-contrast: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --on-brand: #000000;
            --success: #2ECC71;
            --win: #00FF7F;
            --border-subtle: #2A2A2A;
            --border-default: #3F3F3F;
            --font-main: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-display: 'Archivo Black', 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;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
        }
        .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: 500; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: linear-gradient(135deg, var(--gold-start), var(--gold-end)); color: var(--on-brand); }
        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card {
            background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
            border: 1px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-card h2 { font-family: var(--font-display); color: var(--primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-family: var(--font-display); background: linear-gradient(to bottom, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; font-family: var(--font-display); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-family: var(--font-display); font-size: 20px; margin-bottom: 15px; padding-left: 10px; border-left: 3px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: border-color 0.3s; }
        .game-card:hover { border-color: var(--primary); }
        .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-license { background: var(--bg-surface); padding: 20px; border-radius: 15px; margin-bottom: 30px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-contrast); padding: 15px; border-radius: 12px; }
        .guide-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .lottery-section { background: var(--bg-surface); border-radius: 15px; padding: 15px; margin-bottom: 30px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary); font-weight: 600; }
        .lottery-win { color: var(--win); font-weight: 700; }
        .provider-section { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .provider-block { flex: 1; min-width: 45%; background: var(--bg-contrast); padding: 15px; border-radius: 10px; text-align: center; border: 1px solid var(--border-subtle); color: var(--primary); font-weight: bold; }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h4 { font-size: 14px; }
        .review-stars { color: var(--primary); font-size: 12px; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { text-align: center; padding: 25px; background: var(--bg-contrast); border-radius: 15px; margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .age-limit { display: inline-block; border: 2px solid #E74C3C; color: #E74C3C; padding: 2px 8px; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: #141414;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:nth-child(3) { background: var(--primary); color: var(--on-brand); width: 50px; height: 50px; border-radius: 50%; justify-content: center; margin-top: -30px; border: 4px solid var(--bg-main); }
        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }