:root {
            --primary: #D4AF37;
            --primary-hover: #B8860B;
            --secondary: #1A1A1A;
            --secondary-hover: #2D2D2D;
            --accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --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;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Open Sans', 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; }
        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: transform 0.2s, background 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn-primary { background: var(--btn-bg); color: var(--btn-text); }
        .btn-primary:hover { background: var(--btn-hover-bg); transform: translateY(-2px); }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            background: 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: normal; }
        .header-actions { display: flex; gap: 10px; }

        main { width: 100%; }
        section {
            padding: 40px 0;
            content-visibility: auto;
            contain-intrinsic-size: 1px 500px;
        }

        h1 { font-family: var(--font-headings); font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin: 20px 0; color: var(--text-primary); letter-spacing: -0.02em; }
        h2 { font-family: var(--font-headings); font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2rem; margin-bottom: 1.5rem; color: var(--primary); letter-spacing: -0.02em; }
        h3 { font-family: var(--font-headings); font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin-bottom: 10px; }

        .hero-banner { aspect-ratio: 2/1; width: 100%; display: block; overflow: hidden; border-radius: 12px; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .hero-content { text-align: center; margin-bottom: 30px; }
        .hero-cta { width: 100%; font-size: 1.2rem; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: border-color 0.3s; }
        .game-card:hover { border-color: var(--primary); }
        .game-card img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
        .game-card h3 { padding: 12px; margin: 0; font-size: 14px; text-align: center; color: var(--text-secondary); }

        .fact-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
        .fact-table td { padding: 12px; border-bottom: 1px solid var(--border-default); 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: 15px; }

        .toc-nav { display: flex; overflow-x: auto; gap: 10px; padding: 15px 0; 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-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 15px; display: flex; gap: 15px; align-items: flex-start; border-left: 4px solid var(--primary); }
        .announcement-item i { font-size: 24px; color: var(--primary); margin-top: 4px; }
        .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: 12px; }
        .category-tile { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .category-tile i { font-size: 30px; color: var(--primary); margin-bottom: 10px; display: block; }
        .category-tile h3 { margin: 5px 0; font-size: 16px; }
        .category-tile p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .usp-bar { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .usp-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; display: flex; gap: 15px; align-items: center; }
        .usp-card i { font-size: 24px; color: var(--primary); }
        .usp-card h3 { margin: 0 0 5px 0; font-size: 16px; }
        .usp-card p { margin: 0; font-size: 14px; color: var(--text-secondary); }

        .promo-card { background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated)); padding: 24px; border-radius: 16px; margin-bottom: 20px; border: 1px solid var(--border-strong); }
        .promo-card h3 { color: var(--primary); margin-bottom: 12px; }
        .promo-card p { margin-bottom: 20px; font-size: 15px; }

        .payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .payment-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .payment-card i { font-size: 32px; color: var(--text-primary); margin-bottom: 10px; display: block; }
        .payment-card h3 { font-size: 16px; margin-bottom: 8px; }
        .payment-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .guide-step { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
        .step-number { min-width: 40px; height: 40px; background: var(--primary); color: var(--btn-text); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 18px; }

        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .provider-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .provider-card h3 { font-size: 16px; margin-bottom: 8px; }
        .provider-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .player-guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .player-guide-item .meta { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 10px; }

        .article-card { display: flex; background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .article-card img { width: 120px; aspect-ratio: 4/3; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { margin: 0 0 8px 0; font-size: 16px; color: var(--text-primary); }
        .article-content p { margin: 0; font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

        .vip-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 15px; }
        .vip-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; border-top: 3px solid var(--primary); text-align: center; }
        .vip-card h3 { color: var(--accent); }

        .faq-section details { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-default); }
        .faq-section summary { padding: 15px; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        .faq-section summary::after { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); }
        .faq-section p { padding: 0 15px 15px; margin: 0; color: var(--text-secondary); font-size: 14px; }

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

        footer { padding: 40px 0 100px; border-top: 1px solid var(--border-default); }
        .footer-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-sitemap a { font-size: 14px; color: var(--text-muted); }
        .footer-legal { 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-strong);
            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; gap: 4px; color: var(--text-muted); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .usp-bar { grid-template-columns: repeat(2, 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; }
        }

        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(6, 1fr); }
        }