:root {
            --primary: #D4AF37;
            --primary-light: #F1D592;
            --primary-dark: #996515;
            --accent: #FFD700;
            --bg-main: #0A0B0C;
            --bg-surface: #16181D;
            --bg-elevated: #22252C;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border: #2D3139;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); font-family: 'Bebas Neue', cursive; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-transform: uppercase;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        main { max-width: 1000px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; cursor: pointer; object-fit: cover; margin-bottom: 20px; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: 'Bebas Neue', cursive; font-size: 24px; color: var(--primary); letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Bebas Neue', cursive; font-size: 48px; color: #FFFFFF; text-shadow: 0 0 10px var(--primary); }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; font-family: 'Bebas Neue', cursive; }
        .section-title { font-family: 'Bebas Neue', cursive; font-size: 28px; color: var(--primary); margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border); }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border); }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .winners-list { background: var(--bg-elevated); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: var(--primary-light); }
        .winner-amount { color: #00C853; font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-box { background: linear-gradient(45deg, var(--primary-dark), #16181D); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; font-size: 14px; border: 1px solid var(--primary); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; margin-bottom: 10px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); font-size: 15px; cursor: pointer; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { background: var(--bg-elevated); border-radius: 12px; padding: 20px; text-align: center; border: 1px solid var(--primary-dark); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-modal); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border); }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { color: var(--primary); font-family: 'Bebas Neue', cursive; margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-links a { color: var(--text-primary); text-decoration: none; font-size: 14px; border: 1px solid var(--border); padding: 8px 15px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 20px; }