:root {
            --primary: #D4AF37;
            --primary-light: #F9E498;
            --primary-dark: #AA8928;
            --accent: #FF4D4D;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --gold-gradient: linear-gradient(180deg, #F9E498 0%, #D4AF37 100%);
            --font-main: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-number: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
        }
        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 #333;
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: var(--primary-light); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-family: var(--font-heading);
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--gold-gradient); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: #111;
            margin: 15px;
            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); font-family: var(--font-heading); font-weight: 700; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-value { font-family: var(--font-number); font-size: 36px; color: var(--primary-light); text-shadow: 0 0 10px rgba(249, 228, 152, 0.5); }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 12px; color: var(--primary); }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin: 20px 0 15px; font-family: var(--font-heading); font-size: 18px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #333; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license { background: var(--bg-surface); margin: 25px 15px; padding: 20px; border-radius: 12px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary-light); margin-bottom: 8px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guides-container { padding: 0 15px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 8px; margin-bottom: 15px; }
        .guide-card h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .marquee-container { background: #000; padding: 10px 0; margin: 20px 0; border-top: 1px solid #222; border-bottom: 1px solid #222; overflow: hidden; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .marquee-item { white-space: nowrap; font-size: 13px; color: var(--text-secondary); }
        .marquee-item span { color: var(--primary-light); font-weight: bold; }
        .providers-wall { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background: var(--bg-elevated); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; color: var(--primary-light); border: 1px solid #333; }
        .comments-container { padding: 0 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 20px; color: var(--primary); }
        .comment-user .name { font-weight: 600; font-size: 14px; }
        .stars { color: #FFC107; font-size: 12px; margin-bottom: 8px; }
        .comment-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
        .comment-date { font-size: 11px; color: #666; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-light); cursor: pointer; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { padding: 20px 15px; text-align: center; background: #0d0d0d; margin-top: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #151515;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary-dark);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer { background: #050505; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #222; }
        .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary-light); text-decoration: none; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: #888; text-decoration: none; font-size: 12px; }
        .footer-copy { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }