:root {
            --primary-gold: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --secondary-accent: #E63946;
            --main-bg: #0B0C10;
            --surface-card: #1F2833;
            --elevated: #2C3531;
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8892B0;
            --border-subtle: #333333;
            --divider: #45A29E;
            --success: #4CAF50;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', 'Oswald', sans-serif;
            font-weight: 700;
            color: var(--primary-gold);
            line-height: 1.2;
        }
        h1 { font-size: 32px; text-align: center; margin: 20px 0; }
        h2 { font-size: 24px; margin: 25px 0 15px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        h3 { font-size: 18px; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        header {
            background: var(--surface-card);
            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: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: var(--main-bg); }

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

        .jackpot-container {
            background: linear-gradient(180deg, var(--elevated), var(--main-bg));
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--primary-gold);
        }
        .jackpot-label { font-size: 14px; color: var(--primary-light); text-transform: uppercase; font-weight: 700; margin-bottom: 5px; }
        .jackpot-value { font-family: 'Oswald', sans-serif; font-size: 42px; font-weight: 900; color: var(--primary-gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

        .section-padding { padding: 0 15px; }
        .platform-intro { margin: 20px 0; text-align: center; color: var(--text-secondary); }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }
        .game-card {
            background: var(--surface-card);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; }
        .game-card-info { padding: 10px; text-align: center; }

        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .article-card {
            background: var(--surface-card);
            border-radius: 12px;
            display: flex;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
        .article-card-content { padding: 12px; }
        .article-card-content h3 { font-size: 16px; margin-bottom: 5px; }
        .article-card-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .badge-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--surface-card);
            border-radius: 12px;
            margin: 20px 15px;
        }
        .badge-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .badge-item i { font-size: 24px; color: var(--primary-gold); display: block; margin-bottom: 5px; }

        .win-records {
            background: var(--elevated);
            border-radius: 12px;
            padding: 15px;
            margin: 20px 15px;
            border: 1px solid var(--border-subtle);
        }
        .win-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .win-row:last-child { border-bottom: none; }
        .win-user { color: var(--primary-light); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }

        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }
        .provider-block {
            background: var(--surface-card);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            border: 1px solid var(--divider);
            color: var(--text-secondary);
        }

        .review-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card {
            background: var(--surface-card);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 20px; color: var(--primary-gold); }
        .review-stars { color: var(--primary-gold); font-size: 12px; margin-bottom: 8px; }
        .review-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); text-align: right; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--surface-card); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-subtle); }
        .faq-question { font-weight: 700; color: var(--primary-light); margin-bottom: 10px; display: block; }
        .faq-answer { color: var(--text-secondary); font-size: 14px; }

        .responsible-section {
            background: var(--elevated);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 40px;
        }
        .responsible-section i { font-size: 40px; color: var(--primary-gold); margin-bottom: 15px; }
        .responsible-text { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
        .age-limit { display: inline-block; border: 2px solid var(--secondary-accent); color: var(--secondary-accent); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 900; margin-bottom: 15px; }

        footer {
            background: var(--surface-card);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-col a { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 8px; text-transform: capitalize; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--surface-card);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--primary-gold);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--primary-gold); }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
        }