:root {
            --primary: #0A2463;
            --primary-hover: #143A9B;
            --secondary: #C0C0C8;
            --secondary-hover: #E2E2EB;
            --accent: #00F5FF;
            --bg-main: #040B1A;
            --bg-surface: #0B162B;
            --bg-elevated: #13213D;
            --text-primary: #E6F1FF;
            --text-secondary: #A5B4CC;
            --text-muted: #6B7B96;
            --btn-bg: #00F5FF;
            --btn-text: #040B1A;
            --btn-hover: #70F9FF;
            --border-default: #1D2D4D;
            --border-brand: rgba(0, 245, 255, 0.4);
            --glass-bg: rgba(11, 22, 43, 0.7);
            --radius-md: 12px;
            --radius-lg: 24px;
            --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }
        html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: 'Be Vietnam Pro', sans-serif;
            font-size: clamp(15px, 3.9vw, 16px);
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-main);
            padding-inline: 14px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
        a:hover { color: var(--btn-hover); }
        .btn, .cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }
        .btn-primary { background: var(--btn-bg); color: var(--btn-text); }
        .btn-primary:hover { background: var(--btn-hover); transform: translateY(-2px); }
        .btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
        .btn-outline:hover { background: rgba(0, 245, 255, 0.1); }
        .btn-full { width: 100%; display: flex; }
        h1 { font-family: 'Outfit', sans-serif; font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin: 0 0 1rem 0; color: #fff; }
        h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.5rem; color: #fff; }
        h3 { font-family: 'Outfit', sans-serif; font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin: 0 0 0.5rem 0; color: #fff; }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(4, 11, 26, 0.8);
            backdrop-filter: blur(10px);
        }
        .header-brand { display: flex; align-items: center; gap: 8px; }
        .header-brand strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        .header-actions { display: flex; gap: 10px; }
        main { width: 100%; }
        .hero-section { text-align: center; padding: 2rem 0; }
        .hero-intro { max-width: 800px; margin: 0 auto 2rem auto; color: var(--text-secondary); }
        .hero-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 1.5rem; }
        .hero-tag { background: var(--bg-elevated); padding: 6px 12px; border-radius: 99px; font-size: 0.85rem; border: 1px solid var(--border-brand); color: var(--accent); }
        .banner-wrap { margin: 2rem 0; line-height: 0; }
        .banner-wrap img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: var(--radius-lg); }
        .category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 3rem; }
        .category-tile { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: var(--radius-md); 
            text-align: center; 
            border: 1px solid var(--border-default);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .category-tile:hover { border-color: var(--accent); background: var(--bg-elevated); }
        .category-tile i { font-size: 2rem; color: var(--accent); }
        .category-tile strong { display: block; font-size: 1.1rem; color: #fff; }
        .category-tile span { font-size: 0.85rem; color: var(--text-secondary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 3rem; }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: var(--radius-md); 
            overflow: hidden; 
            border: 1px solid var(--border-default); 
            transition: transform 0.3s ease;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--accent); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card-info { padding: 12px; text-align: center; }
        .game-card h3 { font-size: 0.95rem; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .facts-container { background: var(--bg-surface); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border-default); margin-bottom: 2rem; }
        .freshness-notice { font-style: italic; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; display: block; }
        .facts-table { width: 100%; border-collapse: collapse; }
        .facts-table tr { border-bottom: 1px solid var(--border-default); }
        .facts-table td { padding: 12px 0; font-size: 0.95rem; }
        .facts-table td:first-child { color: var(--text-secondary); font-weight: 500; width: 40%; }
        .facts-table td:last-child { color: #fff; text-align: right; }
        .facts-footer { margin-top: 1rem; text-align: center; font-size: 0.85rem; }
        .toc-nav { 
            display: flex; 
            overflow-x: auto; 
            gap: 12px; 
            padding: 1rem 0; 
            scrollbar-width: none; 
            border-bottom: 1px solid var(--border-default); 
            margin-bottom: 2rem;
        }
        .toc-nav::-webkit-scrollbar { display: none; }
        .toc-link { 
            background: var(--bg-elevated); 
            padding: 8px 16px; 
            border-radius: var(--radius-md); 
            white-space: nowrap; 
            font-size: 0.9rem; 
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .toc-link:hover { background: var(--border-strong); color: #fff; }
        .promo-section { margin-bottom: 3rem; }
        .promo-card { 
            background: linear-gradient(145deg, var(--bg-surface), var(--bg-elevated)); 
            padding: 24px; 
            border-radius: var(--radius-lg); 
            border: 1px solid var(--border-brand); 
            margin-bottom: 20px; 
            box-shadow: var(--shadow-card);
        }
        .usp-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 3rem; }
        .usp-tile { 
            display: flex; 
            gap: 15px; 
            padding: 20px; 
            background: var(--bg-surface); 
            border-radius: var(--radius-md); 
            border-left: 4px solid var(--accent);
        }
        .usp-tile i { font-size: 1.5rem; color: var(--accent); }
        .usp-tile strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }
        .usp-tile p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
        .payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 3rem; }
        .payment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: var(--radius-md); 
            text-align: center; 
            border: 1px solid var(--border-default);
        }
        .payment-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 10px; }
        .payment-card strong { display: block; margin-bottom: 8px; font-size: 1rem; }
        .payment-card p { margin: 0; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.4; }
        .guide-steps { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 3rem; }
        .step-card { 
            display: flex; 
            gap: 20px; 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: var(--radius-md); 
            border: 1px solid var(--border-default);
        }
        .step-num { 
            min-width: 40px; 
            height: 40px; 
            background: var(--accent); 
            color: var(--btn-text); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-weight: 700; 
        }
        .step-content h3 { margin: 0 0 8px 0; }
        .step-content a { color: inherit; }
        .download-section { 
            background: var(--bg-elevated); 
            padding: 30px 20px; 
            border-radius: var(--radius-lg); 
            text-align: center; 
            margin-bottom: 3rem; 
            border: 1px solid var(--border-brand);
        }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 3rem; }
        .provider-tile { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: var(--radius-md); 
            text-align: center; 
            border: 1px solid var(--border-default);
        }
        .provider-tile strong { display: block; font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
        .player-guides { margin-bottom: 3rem; }
        .guide-item { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: var(--radius-md); 
            margin-bottom: 15px; 
            border: 1px solid var(--border-default);
        }
        .guide-meta { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
        .announcement-list { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 3rem; }
        .announcement-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: var(--radius-md); 
            border: 1px solid var(--border-default);
            display: flex;
            gap: 15px;
        }
        .announcement-card i { color: var(--accent); font-size: 1.2rem; margin-top: 4px; }
        .announcement-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
        .announcement-info p { margin: 0 0 10px 0; font-size: 0.9rem; color: var(--text-secondary); }
        .announcement-date { font-size: 0.8rem; color: var(--text-muted); }
        .faq-section { margin-bottom: 3rem; }
        .faq-item { background: var(--bg-surface); border-radius: var(--radius-md); margin-bottom: 12px; border: 1px solid var(--border-default); }
        .faq-item summary { padding: 16px; cursor: pointer; list-style: none; display: flex; align-items: center; }
        .faq-item summary h3 { margin: 0; font-size: 1rem; text-align: left; }
        .faq-item p { padding: 0 16px 16px 16px; margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
        .trust-box { background: var(--bg-surface); padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--border-default); margin-bottom: 3rem; }
        .team-card { 
            margin-top: 2rem; 
            padding: 20px; 
            background: var(--bg-elevated); 
            border-radius: var(--radius-md); 
            border: 1px solid var(--border-brand);
        }
        .security-section { margin-bottom: 3rem; }
        .security-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 2rem; }
        .security-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-default); }
        .security-card h3 { color: var(--accent); margin-bottom: 10px; }
        footer { background: var(--bg-surface); padding: 40px 0 100px 0; border-top: 1px solid var(--border-default); }
        .footer-sitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: center; }
        .footer-sitemap a { color: var(--text-secondary); font-size: 0.9rem; }
        .footer-contact { text-align: center; margin-bottom: 20px; font-size: 0.95rem; color: var(--text-secondary); }
        .footer-legal { text-align: center; font-size: 0.85rem; color: var(--text-muted); padding: 0 20px; }
        .navigator { 
            position: fixed; 
            inset-inline: 0; 
            bottom: 0; 
            background: rgba(11, 22, 43, 0.95); 
            backdrop-filter: blur(15px); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0 calc(10px + env(safe-area-inset-bottom)); 
            border-top: 1px solid var(--border-brand); 
            z-index: 1000; 
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 0.75rem; text-decoration: none; }
        .nav-item i { font-size: 1.2rem; color: var(--text-secondary); }
        .nav-item:hover { color: var(--accent); }
        .nav-item:hover i { color: var(--accent); }
        .utility-link { text-align: center; display: block; margin-top: 1rem; font-weight: 500; color: var(--accent); }
        
        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(4, 1fr); }
            .guide-steps { grid-template-columns: repeat(2, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .announcement-list { grid-template-columns: repeat(2, 1fr); }
            .navigator { display: none; }
            footer { padding-bottom: 40px; }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .category-grid { grid-template-columns: repeat(4, 1fr); }
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(5, 1fr); }
        }
        section { content-visibility: auto; contain-intrinsic-size: 1px 500px; }