:root {
            --gold-primary: #D4AF37;
            --gold-shimmer: #F9E076;
            --gold-dark: #996515;
            --casino-red: #E01E26;
            --royal-blue: #1A237E;
            --bg-main: #0F0F0F;
            --bg-sec: #1A1A1A;
            --overlay-card: #242424;
            --text-main: #FFFFFF;
            --text-sec: #BDBDBD;
            --success: #00C853;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-sec);
            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-primary);
        }
        header div { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; border-radius: 4px; }
        header strong { font-size: 16px; font-weight: 400; color: var(--gold-shimmer); }
        .auth-buttons { gap: 8px; }
        .btn {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--gold-primary); border: 1px solid var(--gold-primary); }
        .btn-reg { background: var(--gold-primary); color: #000; }
        .btn:hover { background: var(--gold-shimmer); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            border: 2px solid var(--gold-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { color: var(--gold-shimmer); font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        #jackpot-amount { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--text-main); font-weight: 800; text-shadow: 0 0 10px var(--gold-primary); }
        .intro-card {
            background: var(--overlay-card);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            border-left: 4px solid var(--gold-primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--gold-primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: var(--text-sec); text-align: justify; }
        .section-title { font-size: 20px; margin: 20px 0 15px; color: var(--gold-shimmer); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card {
            background: var(--overlay-card);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid #333;
        }
        .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-main); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-sec); padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-sec); }
        .payment-item i { display: block; font-size: 20px; color: var(--gold-primary); margin-bottom: 5px; }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--overlay-card); padding: 15px; border-radius: 10px; }
        .guide-card h3 { color: var(--gold-shimmer); margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 14px; color: var(--text-sec); }
        .lottery-list { background: var(--bg-sec); border-radius: 12px; padding: 10px; margin-bottom: 25px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 5px; border-bottom: 1px solid #333; font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--gold-shimmer); font-weight: 600; }
        .lottery-win { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(90deg, var(--royal-blue), #0d124a); padding: 12px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; color: white; }
        .comment-section { margin-bottom: 25px; }
        .comment-card { background: var(--overlay-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--gold-primary); }
        .comment-user { font-weight: 600; font-size: 14px; }
        .stars { color: #FFD600; font-size: 12px; }
        .comment-body { font-size: 13px; color: var(--text-sec); font-style: italic; margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: #757575; text-align: right; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--overlay-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--gold-shimmer); border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-sec); background: #1f1f1f; }
        .security-section { background: #121212; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--gold-dark); margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold-primary); }
        .security-text { font-size: 12px; color: var(--text-sec); }
        .security-text a { color: var(--royal-blue); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #111;
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 2px solid var(--gold-primary);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-sec); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--gold-shimmer); }
        footer { background: var(--bg-sec); padding: 30px 15px 100px; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--gold-primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-sec); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #757575; border-top: 1px solid #333; padding-top: 20px; }