:root {
            --brand-color: #D4AF37;
            --bg-color: #0F0F0F;
            --surface-color: #1A1A1A;
            --accent-color: #FFD700;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #6E6E6E;
            --text-inv: #000000;
            --success: #28A745;
            --border-default: #333333;
            --border-focus: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-color);
            color: var(--text-primary);
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--surface-color);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .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-color); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--brand-color); }
        .btn-register { background-color: var(--brand-color); color: var(--text-inv); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 15px;
            border: 1px solid var(--brand-color);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 0.875rem; color: var(--brand-color); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2rem; font-weight: 900; color: var(--accent-color); font-family: 'Roboto', sans-serif; }
        .content-section { padding: 20px 15px; }
        h1 { font-size: 1.5rem; color: var(--brand-color); margin-bottom: 10px; text-align: center; }
        h2 { font-size: 1.25rem; margin-bottom: 15px; border-left: 4px solid var(--brand-color); padding-left: 10px; }
        .intro-p { color: var(--text-secondary); text-align: center; font-size: 0.95rem; margin-bottom: 20px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--surface-color); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .article-card { display: flex; gap: 12px; background: var(--surface-color); padding: 10px; border-radius: 10px; }
        .article-img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .article-content h3 { font-size: 0.9rem; margin-bottom: 5px; color: var(--brand-color); }
        .article-content p { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.3; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .payment-item { background: var(--surface-color); padding: 10px 5px; border-radius: 8px; font-size: 0.7rem; color: var(--text-secondary); }
        .payment-item i { font-size: 1.2rem; color: var(--brand-color); display: block; margin-bottom: 5px; }
        .lottery-section { background: var(--surface-color); padding: 15px; border-radius: 15px; margin-bottom: 25px; }
        .winning-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 0.8rem; }
        .winning-row:last-child { border-bottom: none; }
        .win-user { color: var(--text-secondary); }
        .win-amount { color: var(--success); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-block { background: linear-gradient(45deg, #1A1A1A, #252525); padding: 15px; border-radius: 10px; text-align: center; font-weight: bold; border: 1px solid var(--border-default); }
        .review-card { background: var(--surface-color); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--brand-color); }
        .review-stars { color: var(--accent-color); font-size: 0.8rem; }
        .review-text { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }
        .faq-item { background: var(--surface-color); border-radius: 10px; padding: 15px; margin-bottom: 12px; }
        .faq-q { font-weight: 600; color: var(--brand-color); margin-bottom: 8px; font-size: 0.95rem; }
        .faq-a { font-size: 0.875rem; color: var(--text-secondary); }
        .security-section { background: #121212; padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 25px; border: 1px dashed var(--muted); }
        .security-section i { font-size: 2rem; color: var(--brand-color); margin-bottom: 15px; }
        .security-section p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--surface-color); display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--brand-color); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.7rem; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 3px; }
        .nav-item.active { color: var(--brand-color); }
        footer { background: #080808; padding: 30px 15px 100px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-muted); font-size: 0.8rem; }
        .copyright { color: var(--text-muted); font-size: 0.75rem; border-top: 1px solid var(--border-default); padding-top: 15px; }