:root {
            --primary-bg: #0B0E11;
            --secondary-bg: #1E2329;
            --tertiary-bg: #2B3139;
            --brand-gold: #FFD700;
            --brand-gold-variant: #F0B90B;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-main: #FFFFFF;
            --text-body: #EAECEF;
            --text-muted: #848E9C;
            --success: #0ECB81;
            --border-color: #474D57;
            --font-primary: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-secondary: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-bg);
            color: var(--text-body);
            font-family: var(--font-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--secondary-bg);
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: 500; color: var(--text-main); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--brand-gold); border: 1px solid var(--brand-gold); }
        header .btn-register { background: var(--gold-gradient); color: var(--primary-bg); }
        main { padding: 0; max-width: 1200px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--tertiary-bg);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-gold-variant);
        }
        .jackpot-title { font-family: var(--font-secondary); font-size: 18px; color: var(--brand-gold); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--text-main); font-family: 'Roboto Mono', monospace; }
        .intro-card { padding: 20px; margin: 15px; background: var(--secondary-bg); border-radius: 12px; }
        .intro-card h1 { font-family: var(--font-secondary); font-size: 24px; color: var(--brand-gold); margin-bottom: 12px; line-height: 1.2; }
        .section-title { font-family: var(--font-secondary); font-size: 20px; margin: 20px 15px 10px; color: var(--text-main); border-left: 4px solid var(--brand-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--secondary-bg); border-radius: 8px; overflow: hidden; text-decoration: none; display: block; border: 1px solid var(--border-color); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-body); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license { background: var(--secondary-bg); margin: 20px 15px; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-license i { font-size: 24px; color: var(--brand-gold); display: block; margin-bottom: 5px; }
        .payment-license span { font-size: 11px; color: var(--text-muted); }
        .guide-section { padding: 15px; display: grid; gap: 15px; }
        .guide-card { background: var(--tertiary-bg); padding: 15px; border-radius: 8px; }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--brand-gold-variant); }
        .lottery-section { margin: 15px; background: var(--secondary-bg); border-radius: 12px; overflow: hidden; }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .lottery-user { color: var(--text-main); font-weight: 500; }
        .lottery-win { color: var(--success); font-weight: 700; }
        .provider-section { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--gold-gradient); color: var(--primary-bg); padding: 10px; text-align: center; font-weight: 700; border-radius: 6px; font-size: 14px; }
        .review-section { padding: 15px; }
        .review-card { background: var(--secondary-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid var(--brand-gold); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .stars { color: var(--brand-gold); font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--tertiary-bg); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-gold); margin-bottom: 8px; }
        .security-section { padding: 20px 15px; text-align: center; background: var(--secondary-bg); margin: 20px 15px; border-radius: 12px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .security-section p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-color);
            z-index: 1001;
        }
        .navigator a { text-decoration: none; color: var(--text-muted); text-align: center; flex: 1; }
        .navigator a i { display: block; font-size: 20px; margin-bottom: 4px; }
        .navigator a span { font-size: 11px; }
        footer { background: var(--primary-bg); padding: 30px 15px 100px; border-top: 1px solid var(--border-color); }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--brand-gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--tertiary-bg); padding-top: 20px; }