:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #E01E26;
            --accent: #FFD700;
            --bg-main: #0B0C0E;
            --bg-surface: #16181C;
            --bg-overlay: #1F2228;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-low: #2D3139;
            --border-high: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary-variant); }
        h1 { font-size: 28px; text-align: center; margin: 20px 0; padding: 0 15px; }
        h2 { font-size: 24px; margin: 25px 0 15px; padding-left: 15px; border-left: 4px solid var(--secondary); }
        h3 { font-size: 16px; font-weight: 600; margin-top: 8px; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }

        header {
            background-color: var(--bg-surface);
            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-low);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; border: none; cursor: pointer; font-size: 14px; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #000; }

        .hero-banner { width: 100%; cursor: pointer; }
        .hero-banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }

        .jackpot-section {
            background: linear-gradient(to bottom, #1f1402, var(--bg-surface));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-high);
        }
        .jackpot-label { color: var(--accent); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px var(--primary); }

        .intro-text { padding: 0 15px; color: var(--text-secondary); text-align: center; font-size: 14px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-low); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card-info { padding: 10px; text-align: center; }

        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-surface); padding: 10px; border-radius: 10px; }
        .article-item img { width: 100px; height: 100px; border-radius: 8px; object-fit: cover; }
        .article-content h3 { font-size: 14px; margin: 0 0 5px 0; color: var(--primary-variant); }
        .article-content p { font-size: 12px; color: var(--text-secondary); height: 54px; overflow: hidden; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; text-align: center; }
        .payment-item { background: var(--bg-overlay); padding: 15px 5px; border-radius: 8px; border: 1px solid var(--border-low); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }

        .winner-ticker { background: var(--bg-surface); margin: 15px; padding: 10px; border-radius: 10px; border: 1px solid var(--border-low); height: 200px; overflow: hidden; position: relative; }
        .winner-track { animation: scrollUp 20s linear infinite; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--divider); font-size: 13px; }
        .winner-user { color: var(--accent); }
        .winner-amount { color: #4CAF50; font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-overlay); height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border-low); color: var(--text-secondary); font-weight: bold; }

        .review-list { padding: 15px; overflow-x: auto; display: flex; gap: 15px; }
        .review-card { min-width: 280px; background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-low); }
        .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(--accent); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; border: 1px solid var(--border-low); }
        .faq-q { font-weight: bold; color: var(--primary-variant); margin-bottom: 8px; display: block; }
        .faq-a { font-size: 14px; color: var(--text-secondary); }

        .security-section { padding: 20px 15px; text-align: center; background: var(--bg-surface); margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .responsible-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .age-limit { display: inline-block; border: 2px solid var(--secondary); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; color: var(--secondary); }

        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-low); text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-muted); margin-top: 20px; }

        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-low); z-index: 2000; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; color: var(--text-primary); }
        .nav-item.active i { color: var(--primary); }