:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-emerald: #008751;
            --accent-action: #FFD700;
            --main-bg: #0B0C10;
            --surface-bg: #1F2833;
            --elevated-bg: #2C3531;
            --overlay-bg: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8B8E94;
            --text-on-brand: #0B0C10;
            --text-link: #45A29E;
            --success: #28A745;
            --error: #DC3545;
            --border-subtle: #333333;
            --border-strong: #45A29E;
            --border-gold: rgba(212, 175, 55, 0.5);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }

        header {
            background: var(--surface-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold-light); }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 14px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
        .btn-register { background: var(--primary-gold); color: var(--text-on-brand); }

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

        .jackpot-section {
            background: linear-gradient(135deg, var(--surface-bg), var(--main-bg));
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary-gold-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-value { 
            font-family: 'Oswald', sans-serif; 
            font-size: 32px; 
            color: var(--accent-action); 
            font-weight: 900; 
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .platform-intro { padding: 25px 15px; text-align: center; }
        .platform-intro h1 { font-size: 22px; color: var(--primary-gold); margin-bottom: 15px; }
        .platform-intro p { font-size: 14px; color: var(--text-secondary); }

        .section-title { padding: 15px; font-size: 18px; border-left: 4px solid var(--secondary-emerald); margin-left: 15px; margin-top: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { 
            background: var(--elevated-bg); 
            border-radius: 10px; 
            overflow: hidden; 
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); }

        .trust-section { background: var(--surface-bg); padding: 20px 15px; margin: 20px 0; text-align: center; }
        .icons-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .trust-icon { font-size: 30px; color: var(--text-secondary); min-width: 60px; }

        .guidelines { padding: 15px; }
        .guide-card { background: var(--elevated-bg); padding: 20px; border-radius: 10px; margin-bottom: 15px; border-top: 2px solid var(--primary-gold-dark); }
        .guide-card h2 { font-size: 16px; margin-bottom: 10px; color: var(--primary-gold-light); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); text-align: justify; }

        .winner-marquee { 
            background: rgba(0, 135, 81, 0.1); 
            padding: 10px 0; 
            overflow: hidden; 
            white-space: nowrap; 
            border-top: 1px solid var(--secondary-emerald);
            border-bottom: 1px solid var(--secondary-emerald);
        }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { display: inline-flex; align-items: center; gap: 10px; margin-right: 30px; font-size: 12px; }
        .win-user { color: var(--primary-gold-light); font-weight: bold; }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px; background: var(--main-bg); }
        .provider-tag { background: var(--surface-bg); padding: 8px 15px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-subtle); color: var(--text-secondary); }

        .reviews-section { padding: 15px; }
        .review-card { background: var(--elevated-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-rating { color: var(--accent-action); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
        .review-body { font-size: 13px; color: var(--text-secondary); font-style: italic; }

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

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--surface-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; margin-bottom: 3px; }

        footer { background: #050505; padding: 30px 15px 100px; text-align: center; font-size: 13px; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-social a { color: var(--text-link); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-muted); font-size: 12px; }
        .footer-copy { color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; font-size: 11px; }

        .responsible-gaming { padding: 20px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .age-limit { display: inline-block; border: 2px solid var(--error); color: var(--error); border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: bold; margin-bottom: 10px; }