:root {
            --bg-primary: #0D0E12;
            --bg-secondary: #1A1C23;
            --bg-tertiary: #252831;
            --gold: #D4AF37;
            --gold-light: #F9E076;
            --gold-dark: #AA8928;
            --emerald: #00A86B;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --gold-gradient: linear-gradient(180deg, #F9E076 0%, #D4AF37 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        .display-font { font-family: 'Bebas Neue', cursive; }
        a { text-decoration: none; color: inherit; }
        header {
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2D303A;
        }
        .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; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
        .btn-reg { background: var(--gold-gradient); color: var(--bg-primary); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: radial-gradient(circle at center, #252831 0%, #1A1C23 100%);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--gold-dark);
            text-align: center;
        }
        .jackpot-title { color: var(--gold-light); font-size: 14px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; color: var(--text-primary); font-weight: 800; font-family: 'Bebas Neue', cursive; letter-spacing: 2px; }
        .intro-card { margin: 20px 15px; background: var(--bg-secondary); padding: 20px; border-radius: 15px; border-left: 4px solid var(--gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-header { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; text-transform: uppercase; }
        .section-header .line { flex: 1; height: 1px; background: #3F4451; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-tertiary); border-radius: 10px; overflow: hidden; transition: transform 0.2s; }
        .game-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--gold); }
        .trust-section { margin: 30px 15px; padding: 20px; background: #111; border-radius: 12px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.7; }
        .payment-icons i { font-size: 24px; }
        .guidelines { padding: 0 15px; }
        .guide-item { margin-bottom: 20px; background: var(--bg-secondary); padding: 15px; border-radius: 10px; }
        .guide-item h3 { color: var(--gold-light); margin-bottom: 10px; font-size: 16px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .marquee-container { background: #000; padding: 10px 0; margin: 25px 0; 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-tertiary); padding: 5px 15px; margin-right: 15px; border-radius: 20px; border: 1px solid #333; }
        .winner-pill span { margin: 0 5px; font-size: 12px; }
        .winner-amount { color: var(--emerald); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { padding: 6px 12px; background: var(--bg-secondary); border: 1px solid #3F4451; border-radius: 4px; font-size: 12px; color: var(--text-secondary); }
        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; position: relative; }
        .rev-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-user i { font-size: 30px; color: var(--gold); }
        .rev-stars { color: var(--gold-light); font-size: 12px; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        details { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; }
        summary { padding: 15px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        summary::after { content: '\f0fe'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); }
        details[open] summary::after { content: '\f146'; }
        .faq-content { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .responsible-gaming { margin: 30px 15px; padding: 20px; background: #1a1c23; border: 1px solid #333; border-radius: 10px; text-align: center; }
        .rg-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #16181D; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2D303A; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { font-size: 20px; }
        footer { padding: 30px 15px 100px; background: #08090B; color: var(--text-secondary); font-size: 13px; }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .copyright { text-align: center; border-top: 1px solid #222; padding-top: 20px; font-size: 11px; }