:root {
            --primary: #D4AF37;
            --primary-dark: #B8860B;
            --primary-light: #F9E076;
            --secondary: #00A859;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-card: #262626;
            --bg-input: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --border-default: #333333;
            --border-focus: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: #000; }

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

        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; font-weight: 700; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 32px; color: var(--primary); font-weight: 700; }

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

        .section-title { margin: 24px 16px 12px; font-size: 18px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background-color: var(--bg-card); border-radius: 10px; overflow: hidden; transition: transform 0.2s; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-muted); }

        .trust-section { background-color: var(--bg-surface); margin: 24px 0; padding: 24px 16px; text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; opacity: 0.7; }
        .payment-icons i { font-size: 24px; color: var(--text-secondary); }

        .guidelines { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
        .guide-item { background-color: var(--bg-card); padding: 16px; border-radius: 10px; border-left: 2px solid var(--primary); }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary-light); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-wrapper { background: var(--bg-surface); padding: 12px 0; margin: 20px 0; overflow: hidden; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 20px; }
        .winner-tag { white-space: nowrap; font-size: 12px; background: var(--bg-card); padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border-default); }
        .winner-tag strong { color: var(--primary); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; opacity: 0.6; }
        .provider-name { font-weight: 700; color: var(--text-muted); font-size: 14px; }

        .reviews { padding: 16px; overflow-x: auto; display: flex; gap: 16px; scroll-snap-type: x mandatory; }
        .review-card { min-width: 280px; background: var(--bg-card); padding: 20px; border-radius: 12px; scroll-snap-align: start; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .stars { color: var(--primary-light); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-top: 10px; }

        .faq-section { padding: 16px; }
        .faq-item { margin-bottom: 16px; border-bottom: 1px solid var(--border-default); padding-bottom: 12px; }
        .faq-item h2 { font-size: 15px; margin-bottom: 8px; color: var(--primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { padding: 24px 16px; text-align: center; border-top: 1px solid var(--border-default); margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .age-limit { display: inline-block; padding: 4px 8px; border: 2px solid var(--accent); border-radius: 50%; color: var(--accent); font-weight: 900; margin-bottom: 10px; }

        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0;
            background-color: var(--bg-surface);
            display: flex; justify-content: space-around;
            padding: 10px 0; border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        .nav-item:hover { color: var(--primary); }

        footer { background-color: var(--bg-surface); padding: 32px 16px 80px; color: var(--text-secondary); font-size: 13px; }
        .footer-contacts { display: flex; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-default); font-size: 11px; }