:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F9D423;
            --brand-secondary: #B8860B;
            --brand-secondary-hover: #DAA520;
            --brand-accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-brand-contrast: #000000;
            --text-link: #D4AF37;
            --text-link-hover: #F9D423;
            --btn-bg: #D4AF37;
            --btn-text: #000000;
            --btn-bg-hover: #F9D423;
            --btn-text-hover: #000000;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #D4AF37;
            --semantic-success: #28A745;
            --semantic-error: #DC3545;
        }
        html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            font-size: clamp(15px, 3.9vw, 16px);
            line-height: 1.65;
            padding-inline: 14px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            overflow-x: hidden;
            background-color: var(--bg-main);
            color: var(--text-primary);
        }
        img, video, iframe { max-width: 100%; height: auto; display: block; }
        a { color: var(--text-link); text-decoration: none; transition: color 0.2s ease; }
        a:hover { color: var(--text-link-hover); }
        button, .btn, .cta {
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 18px;
            cursor: pointer;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.2s ease, background-color 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-primary { background-color: var(--btn-bg); color: var(--btn-text); }
        .btn-primary:hover { background-color: var(--btn-bg-hover); transform: translateY(-2px); }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.02em; color: var(--text-primary); }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin: 1.5rem 0; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.2rem; border-left: 4px solid var(--brand-primary); padding-left: 12px; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin-bottom: 0.8rem; }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-main);
            border-bottom: 1px solid var(--border-default);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo strong { font-size: 16px; font-weight: 400; }
        .header-actions { display: flex; gap: 10px; }
        main { width: 100%; }
        .hero { text-align: center; }
        .hero-banner { aspect-ratio: 2/1; width: 100%; overflow: hidden; border-radius: 12px; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-container { content-visibility: auto; contain-intrinsic-size: 1px 500px; margin-bottom: 3rem; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background-color: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s ease; }
        .game-card:hover { transform: scale(1.03); border-color: var(--brand-primary); }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; margin: 0; text-align: center; color: var(--text-secondary); }
        .facts-table { width: 100%; border-collapse: collapse; background-color: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
        .facts-table td { padding: 12px; border-bottom: 1px solid var(--border-default); }
        .facts-table td:first-child { font-weight: 600; color: var(--text-muted); width: 40%; }
        .facts-table td:last-child { color: var(--text-primary); text-align: right; }
        .toc-nav { display: flex; overflow-x: auto; gap: 12px; padding: 12px 0; scrollbar-width: none; }
        .toc-nav::-webkit-scrollbar { display: none; }
        .toc-link { white-space: nowrap; background-color: var(--bg-elevated); padding: 8px 16px; border-radius: 20px; font-size: 14px; border: 1px solid var(--border-default); }
        .category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .category-tile { background-color: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .category-tile i { font-size: 24px; color: var(--brand-primary); margin-bottom: 10px; display: block; }
        .category-tile h3 { margin: 0 0 8px 0; font-size: 16px; }
        .category-tile p { font-size: 12px; color: var(--text-muted); margin: 0; }
        .usp-bar { display: flex; flex-direction: column; gap: 12px; }
        .usp-tile { background-color: var(--bg-surface); padding: 16px; border-radius: 12px; display: flex; gap: 15px; align-items: flex-start; border: 1px solid var(--border-default); }
        .usp-tile i { color: var(--brand-primary); font-size: 20px; margin-top: 4px; }
        .usp-tile h3 { font-size: 16px; margin: 0 0 4px 0; }
        .usp-tile p { font-size: 14px; color: var(--text-secondary); margin: 0; }
        .promo-card { background-color: var(--bg-surface); border: 1px solid var(--border-default); border-radius: 12px; padding: 20px; margin-bottom: 12px; }
        .promo-card h3 { color: var(--brand-primary); }
        .announcement-item { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid var(--brand-primary); }
        .announcement-item i { color: var(--brand-primary); margin-right: 10px; }
        .announcement-date { font-size: 12px; color: var(--text-muted); display: block; margin-top: 8px; }
        .payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .payment-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .payment-card i { font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; display: block; }
        .payment-card p { font-size: 12px; color: var(--text-muted); margin: 0; }
        .guide-step { display: flex; gap: 15px; background-color: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 12px; align-items: flex-start; }
        .step-badge { background-color: var(--brand-primary); color: var(--btn-text); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .provider-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .player-guide { background-color: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 12px; }
        .player-guide .meta { font-size: 12px; color: var(--text-muted); font-style: italic; margin-bottom: 10px; display: block; }
        .article-card { display: flex; background-color: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 12px; border: 1px solid var(--border-default); }
        .article-card img { width: 120px; aspect-ratio: 4/3; object-fit: cover; }
        .article-content { padding: 12px; }
        .article-content h3 { font-size: 16px; margin: 0 0 8px 0; }
        .article-content p { font-size: 13px; color: var(--text-secondary); margin: 0; }
        .vip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .vip-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .vip-card h3 { color: var(--brand-primary); font-size: 18px; }
        .faq-item { background-color: var(--bg-surface); border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-default); }
        .faq-item summary { padding: 15px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        .faq-item summary::after { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--brand-primary); }
        .faq-item p { padding: 0 15px 15px 15px; color: var(--text-secondary); margin: 0; }
        .team-card { background-color: var(--bg-elevated); padding: 20px; border-radius: 12px; border: 1px solid var(--border-brand); margin-top: 20px; }
        footer { background-color: var(--bg-surface); padding: 30px 0; border-top: 1px solid var(--border-default); margin-top: 4rem; }
        .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; text-align: center; margin-bottom: 20px; }
        .footer-legal { font-size: 12px; color: var(--text-muted); text-align: center; padding-inline: 20px; }
        .navigator {
            position: fixed;
            inset-inline: 0;
            bottom: 0;
            height: 72px;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding-bottom: env(safe-area-inset-bottom);
            border-top: 1px solid var(--border-default);
            z-index: 2000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .usp-bar { flex-direction: row; flex-wrap: wrap; }
            .usp-tile { flex: 1 1 calc(50% - 12px); }
            .payment-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .vip-grid { grid-template-columns: repeat(4, 1fr); }
            .article-card { flex-direction: row; }
            .navigator { position: static; display: none; }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .usp-tile { flex: 1; }
            .game-grid { grid-template-columns: repeat(5, 1fr); }
        }