:root {
            --primary: #FFD700;
            --primary-light: #FFE44D;
            --primary-dark: #B8860B;
            --secondary: #E63946;
            --accent: #1DA1F2;
            --bg-base: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #222226;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --border-default: #2D2D30;
            --border-active: #FFD700;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        header {
            height: 60px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; 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-default); }
        .btn-reg { background: var(--primary); color: #000; }

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

        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, #161618 0%, #222226 100%);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary-dark);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 800; color: var(--primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-card { margin: 20px 15px; padding: 25px; background: var(--bg-surface); border-radius: var(--radius); border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; line-height: 1.2; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        .section-title { padding: 0 15px; margin: 30px 0 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .game-provider { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; }

        .trust-section { margin: 30px 15px; padding: 20px; background: var(--bg-surface); border-radius: var(--radius); text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .trust-icons i { font-size: 24px; color: var(--text-secondary); }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .provider-tag { background: var(--bg-elevated); padding: 5px 12px; border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .guidelines { padding: 0 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .winner-marquee { background: var(--bg-surface); margin: 30px 0; padding: 15px 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { display: flex; align-items: center; gap: 10px; font-size: 13px; background: var(--bg-elevated); padding: 8px 15px; border-radius: 30px; }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--semantic-success, #22C55E); font-weight: 700; }

        .reviews { padding: 0 15px; display: grid; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); }
        .review-meta h3 { font-size: 15px; }
        .stars { color: var(--primary); font-size: 12px; margin-top: 2px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); }
        .faq-q { padding: 15px; font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--primary); }
        .faq-a { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }

        .security-section { margin: 30px 15px 100px; padding: 25px; background: linear-gradient(to bottom, var(--bg-surface), var(--bg-base)); border-radius: var(--radius); text-align: center; border: 1px solid var(--border-default); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin: 20px 0; font-size: 30px; color: var(--text-muted); }
        .security-text { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }
        .age-limit { display: inline-block; border: 2px solid var(--secondary); color: var(--secondary); padding: 4px 8px; border-radius: 50%; font-weight: 800; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 70px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; padding-bottom: 10px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-muted); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }

        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-row { margin-bottom: 30px; }
        .footer-title { font-size: 16px; margin-bottom: 15px; color: var(--text-primary); }
        .contact-links { display: flex; flex-wrap: wrap; gap: 15px; }
        .contact-links a { font-size: 14px; color: var(--text-secondary); }
        .footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
        .footer-grid a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
        .copyright { text-align: center; border-top: 1px solid var(--border-default); padding-top: 20px; font-size: 12px; color: var(--text-muted); }