:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #C5A028;
            --brand-secondary: #B8860B;
            --brand-secondary-hover: #A67B0A;
            --brand-accent: #FFD700;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #1F1F22;
            --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: #FFD700;
            --btn-bg: #D4AF37;
            --btn-text: #000000;
            --btn-hover-bg: #FFD700;
            --btn-hover-text: #000000;
            --semantic-success: #2ECC71;
            --semantic-error: #E74C3C;
            --semantic-warning: #F1C40F;
            --semantic-info: #3498DB;
            --border-default: #2A2A2D;
            --border-strong: #3F3F42;
            --border-brand: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }

        html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: var(--font-body);
            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-family: var(--font-headings);
            font-weight: 600;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .btn-primary { background-color: var(--btn-bg); color: var(--btn-text); }
        .btn-primary:hover { background-color: var(--btn-hover-bg); color: var(--btn-hover-text); }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: var(--bg-main);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-actions { display: flex; gap: 8px; }

        main { display: flex; flex-direction: column; gap: 40px; }
        h1 { font-family: var(--font-headings); font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; color: var(--text-primary); margin: 0 0 16px 0; }
        h2 { font-family: var(--font-headings); font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2rem; color: var(--brand-primary); border-left: 4px solid var(--brand-primary); padding-left: 12px; }
        h3 { font-family: var(--font-headings); font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; color: var(--text-secondary); margin: 0 0 8px 0; }

        .hero-section { text-align: center; }
        .hero-banner { aspect-ratio: 2/1; width: 100%; overflow: hidden; border-radius: 12px; margin-bottom: 20px; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .hero-intro { max-width: 800px; margin: 0 auto 24px auto; color: var(--text-secondary); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s ease; display: block; }
        .game-card:hover { transform: translateY(-4px); border-color: var(--brand-primary); }
        .game-card img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
        .game-card-body { padding: 12px; text-align: center; }

        .fact-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin: 16px 0; }
        .fact-table tr { border-bottom: 1px solid var(--border-default); }
        .fact-table td { padding: 12px 16px; font-size: 14px; }
        .fact-table td:first-child { font-weight: 600; color: var(--text-muted); width: 40%; }
        .fact-table td:last-child { color: var(--text-primary); text-align: right; }
        .freshness-notice { font-style: italic; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

        .toc-nav { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
        .toc-nav::-webkit-scrollbar { display: none; }
        .toc-link { background: var(--bg-elevated); padding: 8px 16px; border-radius: 20px; white-space: nowrap; font-size: 14px; border: 1px solid var(--border-default); }

        .announcement-list { display: flex; flex-direction: column; gap: 16px; }
        .announcement-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        .announcement-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .announcement-date { font-size: 12px; color: var(--text-muted); margin-top: 8px; display: block; }

        .category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .category-tile { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .category-tile i { font-size: 24px; color: var(--brand-primary); }
        .category-tile p { font-size: 13px; color: var(--text-muted); margin: 0; }

        .usp-bar { display: flex; flex-direction: column; gap: 16px; }
        .usp-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; display: flex; gap: 16px; align-items: flex-start; }
        .usp-card i { font-size: 20px; color: var(--brand-accent); margin-top: 4px; }

        .promo-card { background: var(--bg-surface); padding: 24px; border-radius: 16px; border: 1px solid var(--border-strong); margin-bottom: 16px; }
        .promo-card h3 { color: var(--brand-primary); }

        .payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .payment-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .payment-card i { font-size: 24px; color: var(--text-secondary); margin-bottom: 12px; }

        .guide-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
        .step-badge { background: 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: 16px; }
        .provider-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }

        .player-guide { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 16px; }
        .guide-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; display: block; }

        .article-card { display: flex; gap: 16px; background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 16px; border: 1px solid var(--border-default); }
        .article-card img { aspect-ratio: 4/3; width: 120px; object-fit: cover; }
        .article-content { padding: 12px; }

        .vip-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 16px; }
        .vip-card { background: linear-gradient(145deg, var(--bg-surface), var(--bg-elevated)); padding: 20px; border-radius: 12px; border: 1px solid var(--border-strong); }

        .faq-item { background: var(--bg-surface); margin-bottom: 12px; border-radius: 12px; overflow: hidden; }
        .faq-item summary { padding: 16px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        .faq-item p { padding: 0 16px 16px 16px; color: var(--text-secondary); margin: 0; }

        .trust-statement { background: var(--bg-surface); padding: 24px; border-radius: 16px; }
        .team-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; margin-top: 24px; border: 1px solid var(--brand-primary); }

        footer { background: var(--bg-surface); padding: 40px 0 20px 0; margin-top: 40px; text-align: center; }
        .footer-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; text-align: left; max-width: 600px; margin: 0 auto 30px auto; }
        .footer-legal { font-size: 12px; color: var(--text-muted); line-height: 1.5; max-width: 700px; margin: 0 auto; }

        .navigator {
            position: fixed;
            inset-inline: 0;
            bottom: 0;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            padding-bottom: env(safe-area-inset-bottom);
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            color: var(--text-muted);
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }

        section { content-visibility: auto; contain-intrinsic-size: 1px 500px; }

        @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); }
            .payment-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .vip-grid { grid-template-columns: repeat(4, 1fr); }
            .navigator { display: none; }
            .article-card { display: grid; grid-template-columns: 200px 1fr; }
            .article-card img { width: 200px; }
        }

        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
        }