:root {
            --bg-base: #0A0B10;
            --bg-surface: #161821;
            --bg-elevated: #1F222F;
            --primary: #FFD700;
            --primary-variant: #C5A021;
            --secondary: #E5B80B;
            --accent: #FF4D4D;
            --success: #00C853;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2D313E;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
            padding-bottom: 70px;
        }
        header {
            background-color: 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(--primary); font-family: var(--font-heading); }
        header .actions { display: flex; gap: 10px; }
        header .actions button {
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-reg { background: var(--primary); color: var(--bg-base); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 15px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1F222F 0%, #0A0B10 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-heading); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 30px; font-weight: 900; color: #FFFFFF; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { font-family: var(--font-heading); font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: 0.3s; }
        .game-card:active img { transform: scale(0.95); }
        .game-card h3 { padding: 8px; font-size: 13px; 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: 25px; }
        .payment-item { background: var(--bg-elevated); padding: 10px; border-radius: 8px; text-align: center; }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--secondary); }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-box { background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 25px; border: 1px solid var(--border-default); }
        .lottery-row { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .lottery-row span:nth-child(2) { color: var(--success); font-weight: bold; }
        .providers-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: var(--bg-elevated); padding: 12px; border-radius: 8px; text-align: center; color: var(--primary); font-weight: bold; font-size: 14px; border: 1px solid var(--border-default); }
        .review-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .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(--primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-secondary); margin-top: 8px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--primary); cursor: pointer; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .security-section h2 { font-size: 18px; margin-bottom: 10px; }
        .security-section p { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-links a { color: var(--primary); font-size: 12px; margin: 0 5px; 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-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) { background: var(--primary); width: 50px; height: 50px; border-radius: 50%; color: var(--bg-base); justify-content: center; transform: translateY(-15px); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-row { margin-bottom: 20px; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 13px; border: 1px solid var(--border-default); padding: 5px 10px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: left; margin-bottom: 20px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 11px; color: var(--text-secondary); border-top: 1px solid var(--border-default); padding-top: 20px; }