:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --secondary: #B22222;
            --accent: #FFD700;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-card: #242424;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #808080;
            --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(--primary); }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1000px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; 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: var(--bg-main); }
        .banner { width: 100%; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; display: block; }
        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            margin: 20px 0;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; }
        .jackpot-amount { color: var(--accent); font-size: 2.5rem; font-weight: 800; font-family: 'Montserrat', sans-serif; }
        .intro-card { background: var(--bg-card); padding: 20px; border-radius: var(--radius); margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-size: 1.25rem; margin: 25px 0 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--secondary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { border-color: var(--primary); transform: translateY(-3px); }
        .game-img-wrapper { aspect-ratio: 1/1; overflow: hidden; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--primary); margin-top: 4px; display: block; }
        .payment-section { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); margin: 25px 0; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; opacity: 0.8; }
        .payment-grid i { font-size: 24px; color: var(--text-secondary); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .guide-item { background: var(--bg-card); padding: 15px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winning-marquee { background: #111; padding: 12px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); margin: 20px 0; }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .win-item { display: inline-flex; align-items: center; gap: 8px; margin-right: 30px; font-size: 12px; color: var(--text-secondary); }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--accent); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px; background: var(--bg-surface); border-radius: var(--radius); margin: 20px 0; }
        .provider-tag { background: var(--bg-card); padding: 6px 12px; border-radius: 20px; border: 1px solid var(--border-default); font-size: 12px; color: var(--primary); }
        .reviews { display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: var(--radius); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
        .review-user i { color: var(--text-muted); font-size: 20px; }
        .review-stars { color: var(--accent); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { margin-bottom: 12px; background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-default); }
        .faq-a { padding: 15px; font-size: 13px; color: var(--text-secondary); background: var(--bg-main); }
        .security-section { background: var(--bg-card); padding: 25px; border-radius: var(--radius); text-align: center; border: 1px solid var(--secondary); margin: 25px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--text-secondary); }
        .age-badge { display: inline-block; padding: 4px 12px; border: 2px solid var(--secondary); color: var(--secondary); border-radius: 50%; font-weight: 800; margin-bottom: 10px; }
        .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; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--primary); transform: translateY(-5px); }
        .nav-item:nth-child(3) i { background: var(--bg-card); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid var(--primary); box-shadow: 0 0 10px var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-row { margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .footer-links a { font-size: 12px; color: var(--text-secondary); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; justify-content: center; }
        .footer-contact a { color: var(--primary); font-size: 13px; }
        .copyright { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }