:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --primary-active: #AA8E2E;
            --secondary: #1E1E1E;
            --accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #333333;
            --font-main: 'Montserrat', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--primary); color: #000; }
        main { max-width: 1000px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e1e1e 0%, #000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--primary);
            text-align: center;
        }
        .jackpot-title { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--accent); text-shadow: 0 0 10px rgba(212,175,55,0.5); }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; text-align: center; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; border-left: 4px solid var(--primary); margin-left: 15px; font-size: 18px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #222; transition: 0.3s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; color: var(--text-primary); padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-surface); margin: 15px; border-radius: 12px; }
        .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); }
        .guides-container { padding: 0 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-marquee { background: var(--bg-elevated); margin: 15px; padding: 10px; border-radius: 8px; overflow: hidden; white-space: nowrap; position: relative; }
        .marquee-content { display: inline-block; animation: scrollLeft 30s linear infinite; }
        .marquee-item { display: inline-block; margin-right: 30px; font-size: 12px; }
        .marquee-item span { color: var(--accent); font-weight: bold; }
        @keyframes scrollLeft { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { background: linear-gradient(45deg, #1a1a1a, #2a2a2a); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--primary); border: 1px solid #333; }
        .comment-grid { padding: 0 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid var(--primary); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: var(--text-secondary); }
        .comment-name { font-weight: 600; font-size: 14px; }
        .stars { color: var(--accent); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
        .comment-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-container { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; font-size: 14px; color: var(--primary); cursor: pointer; border-bottom: 1px solid #222; }
        .faq-a { padding: 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 15px; padding: 20px; background: #000; border: 1px solid var(--border-default); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer { background: #050505; padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        footer .contact-link { color: var(--text-primary); text-decoration: none; font-size: 13px; background: var(--bg-elevated); padding: 8px 15px; border-radius: 5px; }
        footer .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 12px; }
        footer .copyright { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid #222; padding-top: 20px; }