:root {
            --primary-bg: #0a0a0c;
            --secondary-bg: #16181d;
            --tertiary-bg: #1e2128;
            --brand-primary: #ffcc00;
            --brand-variant: #d4a017;
            --brand-secondary: #00c853;
            --brand-accent: #ff3d00;
            --gold-gradient: linear-gradient(180deg, #ffecb3 0%, #ffcc00 100%);
            --text-primary: #ffffff;
            --text-secondary: #b0b3b8;
            --text-muted: #65676b;
            --border-default: #2d3139;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numbers: 'Orbitron', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--secondary-bg);
            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: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--tertiary-bg);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
        }
        .jackpot-title { color: var(--brand-primary); font-family: var(--font-heading); font-size: 14px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 36px; color: var(--text-primary); font-weight: 900; letter-spacing: 2px; }
        .intro-card { background: var(--secondary-bg); border-radius: 15px; padding: 20px; border: 1px solid var(--border-default); margin-bottom: 25px; }
        .intro-card h1 { font-family: var(--font-heading); font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding-left: 10px; border-left: 4px solid var(--brand-primary); }
        .section-header h2 { font-size: 18px; font-family: var(--font-heading); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--secondary-bg); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); text-decoration: none; transition: transform 0.2s; }
        .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; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-licenses { background: var(--secondary-bg); border-radius: 15px; padding: 20px; margin-bottom: 25px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guide-section { margin-bottom: 25px; }
        .guide-card { background: var(--tertiary-bg); padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .guide-card h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .winners-section { background: var(--secondary-bg); border-radius: 15px; padding: 15px; margin-bottom: 25px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .winner-name { color: var(--brand-primary); }
        .winner-amount { color: var(--brand-secondary); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-block { background: var(--tertiary-bg); padding: 12px; text-align: center; border-radius: 8px; font-weight: bold; border-left: 3px solid var(--brand-variant); }
        .comment-section { margin-bottom: 25px; }
        .comment-card { background: var(--secondary-bg); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); margin-bottom: 12px; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { color: var(--text-muted); font-size: 20px; }
        .comment-stars { color: var(--brand-primary); font-size: 12px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--secondary-bg); border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--brand-primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { background: #1a1a1a; padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed var(--brand-primary); margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--primary-bg); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; justify-content: space-around; margin-bottom: 25px; }
        .footer-contact a { color: var(--brand-primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-default); }