:root {
            --primary: #D4AF37;
            --primary-hover: #F2D47E;
            --primary-active: #996515;
            --secondary: #006341;
            --secondary-light: #00875A;
            --accent: #FFD700;
            --bg-base: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1F2630;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #636C77;
            --border-default: #2D3748;
            --win-color: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: var(--bg-base); }
        .btn-register:hover { background: var(--primary-hover); }
        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .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, var(--bg-elevated), #111);
            margin: 20px 10px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 2rem; color: var(--win-color); font-weight: 900; }
        .intro-card { padding: 20px; margin: 10px; background: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-header { padding: 20px 10px 10px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 1.25rem; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: var(--text-muted); }
        .payments-section { background: var(--bg-surface); margin: 20px 10px; padding: 20px; border-radius: 12px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 2rem; color: var(--text-secondary); }
        .guides-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 10px; }
        .guide-item { background: var(--bg-elevated); padding: 20px; border-radius: 12px; }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
        .guide-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .win-ticker { background: var(--bg-surface); margin: 20px 0; overflow: hidden; white-space: nowrap; padding: 10px 0; border-y: 1px solid var(--border-default); }
        .win-track { display: inline-block; animation: scroll 40s linear infinite; }
        .win-item { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-elevated); padding: 5px 15px; border-radius: 20px; margin-right: 20px; border: 1px solid var(--border-default); }
        .win-user { color: var(--primary); font-weight: 600; font-size: 0.85rem; }
        .win-amount { color: var(--win-color); font-weight: 700; font-size: 0.85rem; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px; color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 10px; }
        .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: 1.5rem; color: var(--primary); }
        .review-stars { color: var(--accent); margin-bottom: 8px; }
        .faq-section { padding: 10px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 12px; padding: 15px; }
        .faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .security-section { padding: 20px; text-align: center; color: var(--text-muted); font-size: 0.8rem; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; }
        .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: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 0.75rem; }
        .nav-item i { font-size: 1.25rem; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); font-size: 1.2rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 0.85rem; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 0.75rem; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-default); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guides-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }