:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-navy: #0B132B;
            --main-bg: #050505;
            --surface: #121212;
            --overlay: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --success: #00C853;
            --jackpot: #FF00FF;
            --border-default: #2C2C2C;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold-light); font-family: 'Montserrat', sans-serif; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark)); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 100px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, #121212 0%, #050505 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        .jackpot-label { color: var(--primary-gold); font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { color: var(--jackpot); font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 700; text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: var(--surface); border-radius: 12px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; margin: 25px 15px 15px; color: var(--primary-gold-light); display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); text-decoration: none; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .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; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; margin: 15px; background: var(--overlay); border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-muted); font-size: 10px; }
        .payment-item i { font-size: 20px; color: var(--primary-gold); }
        .guides-container { padding: 0 15px; }
        .guide-item { background: var(--surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-default); }
        .guide-item h2 { font-size: 18px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-table { margin: 15px; background: var(--surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); }
        .winner-row { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 12px; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: var(--primary-gold-light); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: 700; }
        .winner-time { color: var(--text-muted); text-align: right; }
        .providers-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--secondary-navy); color: var(--primary-gold-light); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; border: 1px solid var(--primary-gold-dark); }
        .reviews-container { padding: 0 15px; }
        .review-card { background: var(--overlay); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid var(--primary-gold); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 35px; height: 35px; background: var(--surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--primary-gold); font-size: 12px; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--surface); border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border-default); padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary-gold-light); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: rgba(0, 200, 83, 0.05); border-radius: 12px; border: 1px solid var(--success); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; color: var(--success); margin-bottom: 15px; }
        .security-section h2 { font-size: 18px; color: var(--success); margin-bottom: 10px; }
        .security-section p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; padding-bottom: 5px; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: var(--text-muted); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: var(--surface); padding: 40px 15px 120px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .footer-contact a { color: var(--primary-gold); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }