:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-p: #0A0A0A;
            --bg-s: #161616;
            --bg-surface: #1F1F1F;
            --text-p: #FFFFFF;
            --text-s: #B0B0B0;
            --border: #333333;
            --success: #00C805;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--text-p);
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2 { font-family: 'Playfair Display', serif; color: var(--primary-light); margin-bottom: 15px; }
        h1 { font-size: 28px; line-height: 1.2; text-align: center; }
        h2 { font-size: 24px; text-align: center; margin-top: 20px; }
        h3 { font-size: 14px; font-weight: 600; margin-top: 8px; color: var(--text-p); }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-s);
            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);
        }
        header .logo-area { display: flex; align-items: center; gap: 8px; }
        header .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--bg-p); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; }
        .jackpot-box {
            background: radial-gradient(circle, #2a2a2a 0%, #0a0a0a 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--primary-dark);
            text-align: center;
        }
        .jackpot-label { color: var(--primary); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary-light);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            margin-top: 5px;
        }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary); }
        .intro-card p { color: var(--text-s); font-size: 14px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .payment-section { background: var(--bg-s); padding: 20px 15px; margin: 15px 0; }
        .payment-grid { 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-s); }
        .guide-section { padding: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guide-item h3 { font-size: 16px; color: var(--primary-light); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-s); }
        .lottery-section { background: #000; padding: 15px; margin: 15px 0; border-top: 1px solid var(--primary-dark); border-bottom: 1px solid var(--primary-dark); }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 12px; }
        .lottery-user { color: var(--primary); font-weight: 600; }
        .lottery-win { color: var(--success); font-weight: 700; }
        .provider-section { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; }
        .provider-block { flex: 1 1 calc(50% - 10px); background: linear-gradient(45deg, #1f1f1f, #2a2a2a); padding: 10px; text-align: center; border-radius: 8px; font-weight: 600; font-size: 13px; color: var(--secondary); border: 1px solid #333; }
        .review-section { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 15px; margin-bottom: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .stars { color: #FFCC00; font-size: 12px; }
        .faq-section { padding: 15px; background: var(--bg-s); }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
        .faq-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 16px; }
        .faq-item p { font-size: 14px; color: var(--text-s); }
        .security-section { padding: 20px 15px; text-align: center; border-top: 1px solid var(--border); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .security-text { font-size: 12px; color: var(--muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: rgba(22, 22, 22, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-s); font-size: 10px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-p); padding: 30px 15px 100px; border-top: 2px solid var(--primary-dark); }
        .footer-contact { display: flex; justify-content: space-around; margin-bottom: 25px; }
        .footer-contact a { font-size: 12px; color: var(--primary); display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: var(--text-s); }
        .footer-copy { text-align: center; font-size: 11px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 15px; }