:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F1C40F;
            --brand-secondary: #B8860B;
            --brand-secondary-hover: #DAA520;
            --brand-accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --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-bg-hover: #F1C40F;
            --semantic-success: #2ECC71;
            --semantic-error: #E74C3C;
            --semantic-warning: #F39C12;
            --semantic-info: #3498DB;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #D4AF37;
            --font-headings: 'Montserrat', 'Segoe UI', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }
        html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: var(--font-body);
            background-color: var(--bg-main);
            color: var(--text-primary);
            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;
        }
        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;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-family: var(--font-headings);
            font-weight: 600;
            transition: all 0.3s 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-bg-hover); transform: translateY(-2px); }
        h1, h2, h3 { font-family: var(--font-headings); color: var(--text-primary); letter-spacing: -0.02em; margin-top: 0; }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin-bottom: 1rem; text-align: center; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.25rem; text-align: center; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin-bottom: 0.75rem; }
        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-link { display: flex; align-items: center; gap: 8px; }
        .header-logo-link strong { font-size: 16px; font-weight: 400; }
        .header-actions { display: flex; gap: 8px; }
        main { width: 100%; }
        section {
            padding: 2rem 0;
            content-visibility: auto;
            contain-intrinsic-size: 1px 500px;
        }
        .hero { padding: 0 0 2rem 0; }
        .hero-banner { aspect-ratio: 2 / 1; width: 100%; display: block; }
        .hero-content { text-align: center; padding: 1.5rem 0; }
        .hero-intro { margin-bottom: 1.5rem; color: var(--text-secondary); }
        .grid-games { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s ease;
            border: 1px solid var(--border-default);
            text-decoration: none;
            color: inherit;
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--border-brand); }
        .game-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
        .game-card h3 { padding: 12px; margin: 0; font-size: 14px; text-align: center; }
        .fact-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
        .fact-table td { padding: 12px; border-bottom: 1px solid var(--border-default); }
        .fact-table td:first-child { font-weight: 600; color: var(--brand-primary); width: 40%; }
        .fact-table tr:last-child td { border-bottom: none; }
        .toc-nav {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 1rem 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .toc-nav::-webkit-scrollbar { display: none; }
        .toc-link {
            background: var(--bg-elevated);
            color: var(--text-secondary);
            padding: 8px 16px;
            border-radius: 20px;
            white-space: nowrap;
            font-size: 14px;
            border: 1px solid var(--border-default);
        }
        .toc-link:hover { background: var(--brand-primary); color: var(--text-brand-contrast); }
        .category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .cat-tile {
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            text-decoration: none;
            color: inherit;
        }
        .cat-tile i { font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; display: block; }
        .cat-tile h3 { font-size: 16px; margin-bottom: 4px; }
        .cat-tile p { font-size: 12px; color: var(--text-muted); margin: 0; }
        .usp-bar { display: flex; flex-direction: column; gap: 12px; }
        .usp-tile {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            display: flex;
            gap: 16px;
            align-items: center;
            border-left: 4px solid var(--brand-primary);
        }
        .usp-tile i { font-size: 24px; color: var(--brand-primary); }
        .promo-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
        }
        .announcement-list { display: flex; flex-direction: column; gap: 16px; }
        .announcement-item {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .announcement-item i { color: var(--brand-primary); margin-right: 8px; }
        .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; }
        .pay-card {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .pay-card i { font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; display: block; }
        .guide-step {
            display: flex;
            gap: 16px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 16px;
            align-items: flex-start;
        }
        .step-num {
            background: var(--brand-primary);
            color: var(--text-brand-contrast);
            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-tile {
            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; border: 1px solid var(--border-default); }
        .player-guide .meta { font-size: 12px; color: var(--text-muted); font-style: italic; margin-bottom: 8px; display: block; }
        .article-card {
            display: flex;
            gap: 16px;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 16px;
            text-decoration: none;
            color: inherit;
            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: 14px; color: var(--text-secondary); margin: 0; }
        .vip-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 12px; }
        .vip-card { background: linear-gradient(145deg, var(--bg-surface), var(--bg-elevated)); padding: 20px; border-radius: 16px; border: 1px solid var(--border-brand); text-align: center; }
        .faq-item { background: var(--bg-surface); margin-bottom: 12px; border-radius: 12px; border: 1px solid var(--border-default); }
        .faq-item summary { padding: 16px; cursor: pointer; font-weight: 600; outline: none; }
        .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; border: 1px solid var(--border-default); }
        .team-card { margin-top: 20px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; border: 1px dashed var(--border-brand); }
        footer { padding: 2rem 0; border-top: 1px solid var(--border-default); margin-top: 3rem; }
        .footer-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 2rem; }
        .footer-sitemap a { font-size: 14px; color: var(--text-secondary); }
        .legal-line { text-align: center; font-size: 12px; color: var(--text-muted); line-height: 1.8; }
        .navigator {
            position: fixed;
            inset-inline: 0;
            bottom: 0;
            height: 72px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding-bottom: env(safe-area-inset-bottom);
            z-index: 2000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 10px;
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .grid-games { 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); }
            .navigator { position: static; display: none; }
            .footer-sitemap { grid-template-columns: repeat(4, 1fr); }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .usp-tile { flex: 1; }
        }