:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E0E0E0;
            --accent: #00FF41;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-accent: #FFD700;
            --success: #28A745;
            --error: #DC3545;
            --border: #333333;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { 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;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        header {
            background: var(--bg-surface);
            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);
        }
        .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 14px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
        .btn-register { background: var(--primary); color: #000; }

        .banner { width: 100%; cursor: pointer; aspect-ratio: 2/1; background: var(--bg-elevated); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--accent); margin-top: 10px; }

        .platform-intro { padding: 25px 15px; text-align: center; background: var(--bg-surface); margin: 20px 0; border-radius: 12px; }
        .platform-intro h1 { font-size: 22px; color: var(--primary); margin-bottom: 12px; }
        .platform-intro p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .section-title { padding: 0 15px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { 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 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .game-img-wrapper { aspect-ratio: 1/1; overflow: hidden; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-secondary); margin-top: 4px; }

        .payment-methods {
            padding: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            background: var(--bg-surface);
            margin: 20px 0;
        }
        .payment-methods i { font-size: 30px; color: var(--text-secondary); opacity: 0.8; }

        .guidelines { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guide-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .winners-marquee {
            background: #111;
            padding: 15px 0;
            margin: 25px 0;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; width: max-content; }
        .winner-item { display: flex; align-items: center; gap: 10px; font-size: 13px; white-space: nowrap; background: var(--bg-surface); padding: 8px 15px; border-radius: 50px; border: 1px solid var(--border); }
        .winner-amount { color: var(--accent); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 15px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 15px; }
        .provider-tag { background: var(--bg-surface); padding: 5px 12px; border-radius: 4px; border: 1px solid var(--border); font-size: 12px; color: var(--text-secondary); }

        .reviews { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; border: 1px solid var(--border); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .user-info i { font-size: 20px; color: var(--primary); }
        .stars { color: #f1c40f; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-secondary); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }

        .responsible-gaming {
            padding: 30px 15px;
            text-align: center;
            background: linear-gradient(to bottom, var(--bg-main), var(--bg-surface));
            border-top: 1px solid var(--border);
        }
        .rg-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .rg-icons i { font-size: 35px; color: var(--text-secondary); }
        .age-badge { display: inline-block; border: 2px solid var(--error); color: var(--error); padding: 5px 10px; border-radius: 50%; font-weight: 900; margin-bottom: 15px; }
        .responsible-gaming p { font-size: 12px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }

        footer { background: #050505; padding: 40px 15px 80px; text-align: center; border-top: 1px solid var(--border); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 12px; color: var(--text-secondary); }
        .copyright { font-size: 11px; color: var(--text-secondary); border-top: 1px solid var(--border); padding-top: 20px; }