:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%);
            --text-main: #ffffff;
            --text-dim: #b0b3b8;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-bg);
            color: var(--text-main);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: #11141a;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .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: normal; color: var(--accent-gold); text-transform: uppercase; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--text-dim); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; }
        .jackpot-container {
            background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--accent-gold);
        }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: var(--card-bg); border-radius: 15px; }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .section-title { padding: 0 20px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--accent-gold); display: inline-block; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: block; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-dim); }
        .payments-licenses { padding: 20px 15px; text-align: center; background: #11141a; margin-top: 20px; }
        .icons-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.7; }
        .icons-flex i { font-size: 30px; }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid var(--accent-gold); }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .guide-item p { font-size: 13px; color: var(--text-dim); }
        .winners-marquee { background: #11141a; padding: 15px 0; overflow: hidden; position: relative; margin: 20px 0; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 20px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: #2c313c; padding: 8px 15px; border-radius: 20px; white-space: nowrap; border: 1px solid #444; font-size: 12px; }
        .winner-tag span { color: var(--accent-gold); font-weight: bold; }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-name { background: #333; padding: 5px 12px; border-radius: 5px; font-size: 12px; font-weight: bold; color: var(--text-dim); }
        .comments-section { padding: 15px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 15px; margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--accent-gold); }
        .user-meta { flex-grow: 1; }
        .user-name { font-weight: bold; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-dim); }
        .comment-body { font-size: 13px; color: var(--text-dim); }
        .faq-section { padding: 15px; }
        .faq-item { background: #11141a; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; margin-bottom: 8px; color: var(--accent-gold); }
        .faq-item p { font-size: 13px; color: var(--text-dim); }
        .responsible-gaming { padding: 20px 15px; background: #0a0c10; text-align: center; border-top: 1px solid #333; }
        .responsible-gaming h2 { font-size: 18px; margin-bottom: 10px; color: #ff4d4d; }
        .gaming-links { display: flex; justify-content: center; gap: 15px; margin-top: 15px; font-size: 12px; }
        .gaming-links a { color: var(--text-dim); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #11141a;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 2000;
        }
        .nav-item { text-decoration: none; color: var(--text-dim); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact a { color: var(--accent-gold); margin: 0 10px; text-decoration: none; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-dim); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: #555; }