:root {
            --primary: #D4AF37;
            --secondary: #FFD700;
            --accent: #B8860B;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #222224;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-highlight: #FFD700;
            --border-default: #333333;
            --border-active: #D4AF37;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-highlight); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        header .auth-btns { display: flex; gap: 8px; }
        header button {
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-reg { background: var(--grad-gold); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: var(--radius); overflow: hidden; cursor: pointer; margin-bottom: 15px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-elevated);
            border: 1px solid var(--border-active);
            border-radius: var(--radius);
            padding: 15px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { 
            font-size: 28px; 
            font-weight: 900; 
            color: var(--text-highlight); 
            display: block; 
            margin-top: 5px;
            font-family: 'Montserrat', sans-serif;
        }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); margin-bottom: 20px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); 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 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-primary); font-weight: 500; }
        .payment-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 20px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--secondary); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-marquee { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); position: relative; }
        .marquee-content { height: 120px; overflow: hidden; position: relative; }
        .marquee-list { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        .lottery-item { display: flex; justify-content: space-between; font-size: 12px; padding: 5px 0; border-bottom: 1px dashed var(--border-default); }
        .lottery-item span:nth-child(2) { color: var(--text-highlight); font-weight: 600; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -400px; } }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-item { background: var(--bg-elevated); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; border: 1px solid var(--border-default); color: var(--secondary); }
        .comment-list { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: var(--primary); }
        .comment-name { font-weight: 600; font-size: 14px; }
        .stars { color: #FFAB00; font-size: 12px; margin-left: auto; }
        .comment-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: var(--radius); text-align: center; margin-bottom: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
        .security-badges i { font-size: 30px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-main); padding: 30px 15px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 14px; color: var(--primary); font-weight: 500; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); padding: 4px 0; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }