:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #F9A825;
            --royal-blue: #0D1B2A;
            --accent-red: #E63946;
            --bg-main: #050505;
            --card-surface: #121212;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-accent: #FFD700;
            --border-soft: #2C2C2C;
            --success: #00C853;
        }
        * { 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: rgba(13, 27, 42, 0.95);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--primary-gold);
        }
        .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-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        .btn-reg { background: var(--primary-gold); color: var(--royal-blue); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; }
        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { color: var(--text-accent); font-weight: 800; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-value { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--primary-gold); font-weight: 700; letter-spacing: 2px; }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--card-surface); border-radius: 12px; border: 1px solid var(--border-soft); }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 20px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-soft); transition: 0.3s; }
        .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-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; margin: 20px 15px; background: var(--card-surface); border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 10px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .guides-container, .reviews-container, .faq-container { padding: 0 15px; }
        .card-item { background: var(--card-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid var(--border-soft); }
        .card-item h3 { color: var(--text-accent); margin-bottom: 10px; font-size: 18px; }
        .card-item p { font-size: 14px; color: var(--text-secondary); }
        .win-ticker { margin: 20px 15px; background: var(--card-surface); border-radius: 12px; overflow: hidden; }
        .win-item { padding: 12px; border-bottom: 1px solid var(--border-soft); display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
        .win-user { color: var(--primary-gold); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }
        .providers-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .provider-tag { background: var(--royal-blue); color: var(--primary-gold); padding: 12px; border-radius: 6px; text-align: center; font-weight: 700; border: 1px solid var(--primary-gold); }
        .review-stars { color: var(--secondary-gold); margin-bottom: 8px; }
        .security-section { margin: 20px 15px; padding: 20px; background: rgba(230, 57, 70, 0.05); border: 1px dashed var(--accent-red); border-radius: 12px; text-align: center; }
        .security-section i { font-size: 30px; color: var(--accent-red); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--royal-blue); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid var(--primary-gold); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { background: var(--primary-gold); color: var(--royal-blue); width: 50px; height: 50px; border-radius: 50%; justify-content: center; transform: translateY(-15px); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        footer { background: #000; padding: 30px 15px 100px; border-top: 1px solid var(--border-soft); text-align: center; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary-gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-soft); padding-top: 20px; }