:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #8B0000;
            --accent: #FFD700;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #1F1F23;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --text-muted: #6B6B6B;
            --border-default: #2D2D30;
            --success: #00E676;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

        header {
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

        .header-left { display: flex; align-items: center; gap: 8px; }
        .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: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(145deg, var(--bg-elevated), var(--secondary));
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-title { color: var(--accent); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); font-family: 'Roboto Mono', monospace; }

        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 16px; }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-container { padding: 0 15px 20px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }

        .guides-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--primary); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--accent); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); padding: 10px 0; margin-bottom: 25px; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .winner-pill { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 5px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid var(--border-default); }
        .win-amount { color: var(--success); font-weight: bold; margin-left: 10px; }

        .providers-text { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 15px; opacity: 0.7; }
        .provider-tag { background: var(--bg-elevated); padding: 4px 12px; border-radius: 4px; font-size: 12px; color: var(--text-secondary); }

        .reviews-container { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 8px; font-size: 14px; }
        .stars { color: var(--accent); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

        .faq-container { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 16px; text-align: center; margin-bottom: 100px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--primary); }
        .age-limit { font-size: 12px; color: var(--secondary); font-weight: bold; border: 2px solid var(--secondary); display: inline-block; padding: 4px 8px; border-radius: 50%; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }

        footer { background: var(--bg-surface); padding: 30px 15px 80px; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 20px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; padding: 5px 0; }
        .copyright { font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .banner { aspect-ratio: 4/1; }
        }