:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --gold-primary: #D4AF37;
            --gold-bright: #FFD700;
            --gold-dark: #996515;
            --red-accent: #E60000;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-tertiary: #808080;
            --success: #00C851;
            --border-glow: #333333;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background: rgba(13, 13, 13, 0.95);
            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(--gold-dark);
        }
        header .logo-container { display: flex; align-items: center; gap: 8px; }
        header .logo-container img { border-radius: 4px; }
        header .logo-container strong { font-size: 16px; font-weight: 400; color: var(--gold-bright); text-transform: uppercase; letter-spacing: 1px; }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 6px 15px;
            border-radius: 20px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        header .login-btn { background: transparent; color: var(--gold-bright); border: 1px solid var(--gold-bright); }
        header .reg-btn { background: linear-gradient(to right, var(--gold-dark), var(--gold-bright)); color: #000; }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner-box { width: 100%; cursor: pointer; aspect-ratio: 2 / 1; overflow: hidden; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a, #000);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--gold-dark);
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { font-family: 'Bebas Neue', cursive; font-size: 24px; color: var(--gold-bright); margin-bottom: 5px; }
        .jackpot-value { font-family: 'Bebas Neue', cursive; font-size: 48px; color: #fff; text-shadow: 0 0 10px var(--gold-bright); }
        .intro-card { background: var(--bg-secondary); margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid var(--gold-primary); }
        .intro-card h1 { font-size: 24px; color: var(--gold-bright); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-family: 'Bebas Neue', cursive; font-size: 32px; padding: 15px 15px 5px; color: var(--gold-primary); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-tertiary); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #333; 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: #fff; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; justify-content: center; }
        .pay-item { background: var(--bg-secondary); padding: 10px 15px; border-radius: 8px; border: 1px solid #333; display: flex; align-items: center; gap: 8px; min-width: 120px; }
        .pay-item i { color: var(--gold-bright); font-size: 18px; }
        .pay-item span { font-size: 12px; font-weight: 600; }
        .guide-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-box { background: var(--bg-secondary); padding: 15px; border-radius: 10px; border: 1px solid #333; }
        .guide-box h2 { font-size: 18px; color: var(--gold-bright); margin-bottom: 8px; }
        .guide-box p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .lottery-section { background: #111; margin: 15px; border-radius: 12px; padding: 10px; border: 1px solid var(--gold-dark); }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #222; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--text-primary); font-weight: 600; font-size: 13px; }
        .lottery-game { color: var(--text-secondary); font-size: 12px; }
        .lottery-win { color: var(--success); font-weight: 700; font-size: 14px; }
        .providers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-btn { background: linear-gradient(45deg, #1A1A1A, #262626); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid var(--gold-dark); font-weight: bold; color: var(--gold-bright); }
        .review-grid { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-tertiary); padding: 15px; border-radius: 12px; border: 1px solid #333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--gold-bright); }
        .review-name { font-weight: 700; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-top: 5px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-tertiary); margin-top: 8px; text-align: right; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #333; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; font-size: 14px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { padding: 20px 15px; text-align: center; background: #000; border-top: 1px solid #333; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--gold-bright); font-size: 24px; }
        .security-text { font-size: 12px; color: var(--text-tertiary); max-width: 600px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; width: 100%; max-width: 800px; background: #111; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--gold-dark); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 11px; transition: 0.3s; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--gold-bright); }
        footer { background: #080808; padding: 30px 15px 100px; border-top: 1px solid #222; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-primary); text-decoration: none; font-size: 14px; background: var(--bg-tertiary); padding: 8px 15px; border-radius: 20px; border: 1px solid #333; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-tertiary); padding-top: 20px; border-top: 1px solid #222; }
        @media (max-width: 480px) {
            .jackpot-value { font-size: 36px; }
            .section-title { font-size: 28px; }
        }