:root {
            --primary: #D4AF37;
            --primary-variant: #F9D71C;
            --secondary: #0F172A;
            --accent: #FF4D4D;
            --bg-default: #020617;
            --bg-surface: #0F172A;
            --bg-elevated: #1E293B;
            --bg-nav: #000000;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --brand-contrast: #000000;
            --success: #10B981;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --border-default: #1E293B;
            --display-font: 'Montserrat', 'Inter', system-ui, sans-serif;
            --body-font: 'Inter', 'Segoe UI', Roboto, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--body-font);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--display-font); font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--bg-nav);
            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-default);
        }
        .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(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: var(--brand-contrast); }
        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-container {
            margin: 20px 15px;
            background: var(--bg-surface);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-size: 32px;
            font-family: var(--display-font);
            font-weight: 800;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { margin: 25px 15px 15px; font-size: 20px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .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: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { margin: 20px 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .payment-item i { font-size: 20px; color: var(--primary); }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .guide-section { padding: 0 15px; margin-top: 20px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-container { margin: 20px 0; background: var(--bg-surface); height: 40px; overflow: hidden; position: relative; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .lottery-track { display: flex; animation: scrollMarquee 40s linear infinite; position: absolute; white-space: nowrap; align-items: center; height: 100%; }
        .lottery-item { padding: 0 20px; font-size: 13px; color: var(--text-secondary); }
        .lottery-item span { color: var(--success); font-weight: bold; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin: 20px 0; }
        .provider-block { padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; font-size: 14px; }
        .provider-block:nth-child(odd) { background: linear-gradient(135deg, #1e293b, #0f172a); color: var(--primary); border: 1px solid var(--primary); }
        .provider-block:nth-child(even) { background: var(--primary); color: var(--brand-contrast); }
        .review-section { padding: 0 15px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .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-stars { color: #F59E0B; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border-bottom: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--text-primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: #070a13; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--primary); font-size: 24px; }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-nav);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 18px; }
        footer { background: var(--bg-nav); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 14px; color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); pt: 20px; }