:root {
            --primary: #D4AF37;
            --primary-light: #F1D279;
            --primary-dark: #996515;
            --secondary: #00A86B;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1C2127;
            --bg-overlay: #2D3436;
            --bg-elevated: #343A40;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --border-default: #2D3748;
            --heading-font: 'Montserrat', sans-serif;
            --body-font: 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--body-font);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-family: var(--heading-font); font-size: 16px; font-weight: 500; }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-reg { background: var(--primary); color: var(--bg-main); }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--primary);
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-family: var(--heading-font); color: var(--primary-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-value { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: #FFFFFF; text-shadow: 0 0 10px var(--primary); margin: 10px 0; }
        .intro-card { background: var(--bg-surface); padding: 25px; border-radius: 15px; margin-bottom: 25px; text-align: center; }
        .intro-card h1 { font-family: var(--heading-font); font-size: 22px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { font-family: var(--heading-font); font-size: 18px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--secondary); display: flex; align-items: center; justify-content: space-between; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 13px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-licence { background: var(--bg-overlay); padding: 20px; border-radius: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px; }
        .pl-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); text-align: center; }
        .pl-item i { font-size: 20px; color: var(--primary-light); }
        .pl-item span { font-size: 10px; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-card h2 { font-size: 18px; color: var(--primary-light); margin-bottom: 10px; font-family: var(--heading-font); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .marquee-container { background: var(--bg-surface); padding: 15px; border-radius: 10px; overflow: hidden; margin-bottom: 25px; border: 1px solid var(--primary-dark); }
        .marquee-track { display: flex; flex-direction: column; gap: 10px; height: 150px; overflow-y: hidden; position: relative; }
        .winner-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px; border-bottom: 1px solid var(--border-default); animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-row span:nth-child(2) { color: var(--secondary); font-weight: bold; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: var(--bg-elevated); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--primary); border-bottom: 2px solid var(--primary); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; position: relative; border-left: 4px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 10px; text-align: right; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 16px; color: var(--primary-light); margin-bottom: 8px; font-family: var(--heading-font); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .safety-section { background: var(--bg-overlay); padding: 25px; border-radius: 15px; text-align: center; border: 1px dashed var(--text-muted); }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 30px; }
        .safety-icons i { color: var(--secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { background: var(--primary); color: var(--bg-main); width: 50px; height: 50px; border-radius: 50%; justify-content: center; margin-top: -30px; border: 4px solid var(--bg-main); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        footer { background: var(--bg-main); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); }
        footer .contact-row { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-row a { color: var(--text-primary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .links-grid a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copyright { text-align: center; color: var(--text-muted); font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-default); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guides-container { grid-template-columns: 1fr 1fr; }
            .providers-wall { grid-template-columns: repeat(4, 1fr); }
        }