:root {
            --brand-primary: #FFD700;
            --brand-hover: #F6C23E;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4D4D;
            --bg-primary: #0A0A0B;
            --bg-secondary: #161618;
            --bg-tertiary: #1F1F23;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A5;
            --text-muted: #71717A;
            --border-default: #27272A;
            --win-color: #F9A825;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-family: 'Montserrat', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: var(--text-primary); }
        h1 { font-size: 24px; margin-bottom: 16px; text-align: center; }
        h2 { font-size: 20px; margin: 24px 0 16px; border-left: 4px solid var(--brand-primary); padding-left: 12px; }
        h3 { font-size: 16px; margin: 8px 0; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            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-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: var(--bg-primary); }
        .btn-register:hover { background-color: var(--brand-hover); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; cursor: pointer; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-tertiary), #2a2a2e);
            margin: 16px 0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-label { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 600; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 32px; color: var(--win-color); font-weight: 900; text-shadow: 0 0 10px rgba(249, 168, 37, 0.4); }
        .intro-section { padding: 24px 0; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; text-align: center; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .game-card { background-color: var(--bg-secondary); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px 12px; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 16px; }
        .article-item { display: flex; background: var(--bg-secondary); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 12px; flex: 1; }
        .article-content h3 { font-size: 14px; margin: 0 0 4px; line-height: 1.3; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-secondary); 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; margin: 20px 0; }
        .payment-item { background: var(--bg-tertiary); padding: 12px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 6px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); text-transform: uppercase; }
        .winners-box { height: 200px; overflow: hidden; background: var(--bg-secondary); border-radius: 10px; border: 1px solid var(--border-default); position: relative; }
        .winners-scroll { display: flex; flex-direction: column; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-item { padding: 12px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; align-items: center; }
        .winner-info span { display: block; font-size: 12px; }
        .winner-info .name { font-weight: 600; color: var(--text-primary); }
        .winner-info .game { color: var(--text-muted); }
        .winner-amount { color: var(--win-color); font-weight: 700; font-family: 'Oswald', sans-serif; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-item { background: var(--bg-tertiary); padding: 16px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; border: 1px solid var(--border-default); }
        .review-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
        .review-card { background: var(--bg-secondary); padding: 16px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { color: var(--brand-primary); font-size: 20px; }
        .stars { color: #f1c40f; font-size: 12px; margin-bottom: 8px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; text-align: right; }
        .faq-section { margin-top: 32px; }
        .faq-item { margin-bottom: 16px; background: var(--bg-secondary); border-radius: 8px; border: 1px solid var(--border-default); }
        .faq-question { padding: 16px; font-weight: 600; color: var(--brand-primary); cursor: pointer; }
        .faq-answer { padding: 0 16px 16px; color: var(--text-secondary); font-size: 14px; border-top: 1px solid var(--border-default); padding-top: 12px; }
        .security-section { background: var(--bg-tertiary); padding: 24px; border-radius: 12px; text-align: center; margin: 32px 0; border: 1px solid var(--brand-accent); }
        .security-icons { font-size: 32px; margin-bottom: 16px; display: flex; justify-content: center; gap: 20px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 12px; }
        .age-badge { display: inline-block; border: 2px solid var(--brand-accent); color: var(--brand-accent); border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: 900; margin-bottom: 12px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-secondary); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active i, .nav-item.active span { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 40px 16px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }