:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #C5A028;
            --accent-emerald: #006B3E;
            --premium-black: #0D0D0D;
            --main-bg: #050505;
            --surface-1: #121212;
            --surface-2: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --brand-text: #D4AF37;
            --success: #2ECC71;
            --border-subtle: #2C2C2C;
            --border-strong: #D4AF37;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background-color: var(--surface-1);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-text);
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
        }
        .btn-register {
            background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
            color: var(--premium-black);
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: var(--surface-2);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-strong);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label {
            font-size: 14px;
            color: var(--brand-text);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .jackpot-amount {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: var(--text-primary);
            font-weight: 700;
        }
        .intro-section {
            padding: 20px 16px;
        }
        .intro-section h1 {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .intro-section p {
            font-size: 16px;
            color: var(--text-secondary);
        }
        .section-title {
            padding: 0 16px;
            margin: 24px 0 12px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: "";
            width: 4px;
            height: 20px;
            background: var(--primary-gold);
            border-radius: 2px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px;
        }
        .game-card {
            background: var(--surface-1);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            padding: 0 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .article-card {
            display: flex;
            background: var(--surface-1);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-info {
            padding: 12px;
            flex: 1;
        }
        .article-info h3 {
            font-size: 14px;
            margin-bottom: 4px;
            color: var(--primary-gold);
        }
        .article-info p {
            font-size: 12px;
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0 16px;
            margin-bottom: 24px;
        }
        .payment-item {
            background: var(--surface-1);
            padding: 12px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-subtle);
        }
        .payment-item i {
            font-size: 20px;
            color: var(--primary-gold);
            margin-bottom: 5px;
            display: block;
        }
        .payment-item span {
            font-size: 10px;
            color: var(--text-muted);
        }
        .lottery-section {
            background: var(--surface-1);
            margin: 16px;
            border-radius: 12px;
            padding: 16px;
            max-height: 300px;
            overflow-y: hidden;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .lottery-user { color: var(--brand-text); }
        .lottery-win { color: var(--success); font-weight: 600; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px;
        }
        .provider-block {
            background: linear-gradient(135deg, var(--surface-2), var(--surface-1));
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            font-weight: 600;
            color: var(--text-secondary);
        }
        .review-section {
            padding: 0 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .review-card {
            background: var(--surface-2);
            padding: 16px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-gold);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-rating { color: #F1C40F; font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section {
            padding: 0 16px;
        }
        .faq-item {
            background: var(--surface-1);
            margin-bottom: 12px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            padding: 16px;
        }
        .faq-item h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            padding: 24px 16px;
            text-align: center;
            background: var(--surface-2);
            margin-top: 30px;
        }
        .security-icons { font-size: 32px; color: var(--accent-emerald); margin-bottom: 16px; display: flex; justify-content: center; gap: 20px; }
        .security-text { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
        .security-links a { color: var(--primary-gold); font-size: 13px; text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--surface-1);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            color: var(--text-muted);
            flex: 1;
        }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 10px; }
        .nav-item.active { color: var(--primary-gold); }
        footer {
            background: var(--premium-black);
            padding: 30px 16px 20px;
            text-align: center;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a { font-size: 12px; color: var(--text-muted); }
        .footer-copy { font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }