:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
            --border-gold: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-flex { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-sec {
            background: linear-gradient(45deg, #1a1a1a, #262626);
            margin: 20px 0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--border-gold);
        }
        .jackpot-label { color: var(--primary); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        #jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 28px; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.5); }
        .intro-card { background: var(--bg-surface); padding: 25px; border-radius: 16px; margin: 20px 0; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 20px 0; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .section-title { margin: 30px 0 15px; font-size: 1.25rem; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); display: block; border-radius: 2px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; display: block; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 20px 0; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; }
        .guide-card h3 { margin-bottom: 10px; color: var(--primary); font-size: 1.1rem; }
        .guide-card p { font-size: 0.875rem; color: var(--text-secondary); }
        .lottery-marquee { background: var(--bg-elevated); padding: 15px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; position: relative; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .lottery-item { display: inline-flex; align-items: center; background: rgba(0,0,0,0.3); padding: 8px 15px; border-radius: 20px; margin-right: 20px; border: 1px solid var(--border-default); font-size: 12px; }
        .lottery-item span { color: var(--primary); font-weight: bold; margin: 0 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-sec { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-block { padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; color: #000; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: var(--text-muted); }
        .stars { color: #FFCC00; font-size: 12px; margin-bottom: 10px; }
        .faq-sec { margin: 30px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 0.9rem; }
        .security-sec { background: #111; padding: 25px; border-radius: 15px; margin: 30px 0; border: 1px dashed var(--text-muted); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-align: center; font-size: 10px; color: var(--text-muted); }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }
        footer { background: #050505; padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); font-size: 12px; }
        .footer-copy { text-align: center; font-size: 11px; color: var(--text-muted); }