:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --primary-active: #996515;
            --secondary: #1E3A8A;
            --accent: #FFD700;
            --bg-default: #0B0E11;
            --bg-paper: #151921;
            --bg-surface: #1E232B;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --border-default: #2D343F;
            --font-headings: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--bg-paper);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: var(--bg-default); }
        .banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; }
        .jackpot-section {
            background: linear-gradient(135deg, #1E232B 0%, #0B0E11 100%);
            padding: 20px;
            margin: 20px 0;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-label { color: var(--accent); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; color: var(--primary); font-family: var(--font-headings); }
        .intro-card { background: var(--bg-paper); padding: 25px; border-radius: 16px; margin-bottom: 30px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-size: 22px; margin: 30px 0 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: var(--bg-paper); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 12px; color: var(--text-secondary); }
        .payments-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin: 30px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
        .payment-icon { width: 60px; height: 35px; background: #fff; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #000; font-size: 10px; font-weight: bold; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
        .guide-card { background: var(--bg-paper); padding: 20px; border-radius: 12px; border-top: 2px solid var(--secondary); }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--accent); }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }
        .marquee-container { background: var(--bg-paper); padding: 15px 0; margin: 30px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; width: max-content; }
        .winner-item { display: flex; align-items: center; gap: 10px; background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border-default); white-space: nowrap; }
        .winner-user { color: var(--accent); font-weight: bold; }
        .winner-amount { color: var(--primary); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
        .provider-tag { background: var(--bg-paper); padding: 8px 16px; border-radius: 6px; border: 1px solid var(--border-default); font-size: 14px; color: var(--text-secondary); }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 16px; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-paper); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--accent); font-size: 12px; margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-secondary); }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-paper); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { background: #000; padding: 25px; border-radius: 16px; text-align: center; border: 1px dashed var(--border-default); margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--primary); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-paper); height: 60px; display: flex; justify-content: space-around; align-items: center; 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: 12px; }
        .nav-item i { font-size: 18px; }
        footer { background: var(--bg-paper); padding: 40px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .footer-links a { font-size: 14px; color: var(--text-secondary); }
        .footer-copyright { font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }