:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #1A1A1A;
            --accent: #FF4D4D;
            --bg-main: #0B0C10;
            --bg-surface: #1F2833;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8892B0;
            --border-default: #45A29E;
            --border-subtle: #1F2833;
            --success: #2ECC71;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-overlay);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .login-btn { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .register-btn { background: var(--primary); color: #0B0C10; }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .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-box {
            background: linear-gradient(135deg, #1A1A1A, #0B0C10);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #FFFFFF; text-shadow: 0 0 10px var(--primary); font-family: 'Inter', sans-serif; }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
        h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        h2 { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        h2::before { content: ""; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; color: white; 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: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-section { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin: 20px 0; }
        .payment-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guide-section { margin-bottom: 20px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 10px; font-size: 14px; color: var(--text-secondary); }
        .guide-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 16px; }
        .lottery-section { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin: 20px 0; }
        .lottery-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 12px; }
        .lottery-row:last-child { border-bottom: none; }
        .win-amt { color: var(--success); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-item { background: var(--secondary); padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); color: var(--primary); font-weight: bold; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; 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); }
        .stars { color: #F1C40F; font-size: 12px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { text-align: center; padding: 20px; background: var(--secondary); border-radius: 12px; margin-top: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--border-default); }
        .age-limit { color: var(--accent); font-weight: bold; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-overlay); backdrop-filter: blur(15px); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) i { color: var(--primary); font-size: 24px; }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-primary); text-decoration: none; font-size: 14px; background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; }
        .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: 13px; text-align: center; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); pt: 20px; }