:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-emerald: #004D40;
            --accent-red: #D32F2F;
            --main-bg: #0D0D0D;
            --surface-bg: #1A1A1A;
            --elevated-bg: #262626;
            --overlay-bg: rgba(0, 0, 0, 0.85);
            --primary-text: #FFFFFF;
            --secondary-text: #B3B3B3;
            --brand-text: #D4AF37;
            --link-text: #FFD700;
            --success: #4CAF50;
            --win-highlight: #FFD700;
            --default-border: #333333;
            --active-border: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary-gold); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--surface-bg);
            border-bottom: 1px solid var(--default-border);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary-text); border: 1px solid var(--default-border); }
        .btn-register { background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark)); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: radial-gradient(circle, var(--secondary-emerald), #000);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
        }
        .jackpot-title { font-size: 14px; color: var(--primary-gold-light); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 28px; color: var(--win-highlight); font-weight: 700; margin-top: 10px; }
        .intro-card { background: var(--surface-bg); margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--secondary-text); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--surface-bg); border-radius: 12px; overflow: hidden; border: 1px solid var(--subtle-border); position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; padding: 8px; text-align: center; color: var(--primary-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--surface-bg); margin: 15px; border-radius: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: var(--secondary-text); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .guide-section { padding: 15px; }
        .guide-card { background: var(--elevated-bg); padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--default-border); }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--secondary-text); }
        .lottery-container { background: var(--surface-bg); margin: 15px; border-radius: 15px; overflow: hidden; }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--default-border); display: flex; justify-content: space-between; align-items: center; }
        .lottery-info { display: flex; flex-direction: column; }
        .lottery-user { font-size: 14px; font-weight: 600; }
        .lottery-game { font-size: 12px; color: var(--secondary-text); }
        .lottery-win { color: var(--win-highlight); font-family: 'Roboto Mono', monospace; font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { background: linear-gradient(45deg, var(--secondary-emerald), #0a2e28); padding: 15px; text-align: center; border-radius: 10px; font-weight: 700; color: var(--primary-gold-light); }
        .reviews-container { padding: 15px; overflow-x: auto; display: flex; gap: 15px; scroll-snap-type: x mandatory; }
        .review-card { min-width: 85%; background: var(--surface-bg); padding: 15px; border-radius: 15px; scroll-snap-align: start; border: 1px solid var(--default-border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary-gold); }
        .stars { color: #FFC107; font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--surface-bg); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary-gold-light); border-bottom: 1px solid var(--default-border); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--secondary-text); display: block; }
        .security-section { padding: 20px 15px; text-align: center; background: #000; border-top: 1px solid var(--default-border); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .age-badge { display: inline-block; padding: 4px 12px; border: 2px solid var(--accent-red); color: var(--accent-red); font-weight: 800; border-radius: 5px; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--overlay-bg);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--default-border);
            z-index: 2000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--secondary-text); font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:nth-child(3) i { color: var(--primary-gold); font-size: 24px; }
        footer { background: var(--surface-bg); padding: 30px 15px 100px; border-top: 1px solid var(--default-border); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { font-size: 14px; color: var(--link-text); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--secondary-text); text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--disabled_text); border-top: 1px solid var(--default-border); padding-top: 20px; }