:root {
            --brandPrimary: #005BFF;
            --brandPrimaryHover: #337BFF;
            --brandSecondary: #C0C0C0;
            --brandSecondaryHover: #E0E0E0;
            --brandAccent: #00F5FF;
            --bgMain: #050A18;
            --bgSurface: #0C142D;
            --bgElevated: #152045;
            --bgOverlay: rgba(5, 10, 24, 0.8);
            --textPrimary: #E6EBF5;
            --textSecondary: #A9B6D1;
            --textMuted: #6B7B9B;
            --textBrandContrast: #050A18;
            --textLink: #00F5FF;
            --textLinkHover: #33D1FF;
            --btnBg: #00F5FF;
            --btnText: #050A18;
            --btnBgHover: #33D1FF;
            --btnTextHover: #050A18;
            --semSuccess: #00E676;
            --semError: #FF5252;
            --semWarning: #FFB300;
            --semInfo: #00B0FF;
            --borderDefault: #1C2B5A;
            --borderStrong: #2D428A;
            --borderBrand: #00F5FF;
            --radiusSm: 4px;
            --radiusMd: 8px;
            --radiusLg: 16px;
            --radiusPill: 9999px;
            --shadowCard: 0 10px 30px rgba(0, 0, 0, 0.5);
            --shadowElevated: 0 20px 40px rgba(0, 0, 0, 0.7);
            --shadowGlow: 0 0 15px rgba(0, 245, 255, 0.6);
            --gradBrand: linear-gradient(135deg, #005BFF 0%, #00F5FF 100%);
            --gradHero: radial-gradient(circle at center, #152045 0%, #050A18 100%);
            --gradBtn: linear-gradient(180deg, #00F5FF 0%, #00D1E0 100%);
        }
        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;
            padding-inline: 14px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            overflow-x: hidden;
            background-color: var(--bgMain);
            color: var(--textPrimary);
        }
        h1, h2, h3 {
            font-family: "Rajdhani", sans-serif;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-top: 0;
        }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); color: var(--textPrimary); text-align: center; margin-bottom: 1rem; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); color: var(--textPrimary); margin-top: 2.5rem; margin-bottom: 1.2rem; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); color: var(--textPrimary); margin-bottom: 0.8rem; }
        img, video, iframe { max-width: 100%; height: auto; display: block; }
        a { color: var(--textLink); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--textLinkHover); }
        .btn, .cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 24px;
            border-radius: var(--radiusMd);
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btnPrimary { background: var(--gradBtn); color: var(--btnText); box-shadow: var(--shadowGlow); }
        .btnPrimary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 245, 255, 0.4); }
        .btnSecondary { background: var(--bgElevated); color: var(--textPrimary); border: 1px solid var(--borderStrong); }
        .btnSecondary:hover { background: var(--borderStrong); }
        .card { background: var(--bgSurface); border: 1px solid var(--borderDefault); border-radius: var(--radiusLg); padding: 20px; box-shadow: var(--shadowCard); transition: border-color 0.3s; }
        .card:hover { border-color: var(--brandAccent); }
        .glassCard { background: rgba(12, 20, 45, 0.7); backdrop-filter: blur(10px); border: 1px solid var(--borderStrong); border-radius: var(--radiusLg); }
        header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; max-width: 1200px; margin: 0 auto; }
        .headerLogo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        .headerLogo strong { font-size: 16px; font-weight: 400; }
        .headerActions { display: flex; gap: 10px; }
        main { max-width: 1200px; margin: 0 auto; }
        .heroSection { text-align: center; padding: 40px 0; background: var(--gradHero); border-radius: var(--radiusLg); margin-bottom: 30px; }
        .heroIntro { max-width: 800px; margin: 0 auto 25px; color: var(--textSecondary); padding-inline: 20px; }
        .heroCTA { display: block; width: 100%; max-width: 400px; margin: 0 auto 20px; }
        .featurePills { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
        .featurePill { background: var(--bgElevated); color: var(--brandAccent); padding: 6px 15px; border-radius: var(--radiusPill); font-size: 0.85rem; border: 1px solid var(--borderStrong); }
        .bannerLink { display: block; width: 100%; aspect-ratio: 2 / 1; overflow: hidden; border-radius: var(--radiusMd); }
        .bannerImg { width: 100%; height: 100%; object-fit: cover; }
        .categoryGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 30px 0; }
        .categoryTile { background: var(--bgSurface); padding: 20px; border-radius: var(--radiusMd); border: 1px solid var(--borderDefault); text-align: center; transition: 0.3s; }
        .categoryTile:hover { background: var(--bgElevated); border-color: var(--brandAccent); transform: translateY(-5px); }
        .categoryTile i { font-size: 2rem; color: var(--brandAccent); margin-bottom: 10px; display: block; }
        .categoryTile span { display: block; font-weight: 600; margin-bottom: 5px; }
        .categoryTile p { font-size: 0.8rem; color: var(--textMuted); margin: 0; }
        .gameGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .gameCard { background: var(--bgSurface); border-radius: var(--radiusMd); overflow: hidden; border: 1px solid var(--borderDefault); transition: 0.3s; }
        .gameCard:hover { border-color: var(--brandAccent); transform: scale(1.03); }
        .gameCard img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
        .gameCard h3 { padding: 12px; margin: 0; font-size: 1rem; text-align: center; }
        .factTable { width: 100%; border-collapse: collapse; margin: 20px 0; background: var(--bgSurface); border-radius: var(--radiusMd); overflow: hidden; }
        .factTable td { padding: 12px 15px; border-bottom: 1px solid var(--borderDefault); }
        .factTable td:first-child { font-weight: 600; color: var(--textSecondary); width: 40%; }
        .freshnessNotice { font-style: italic; color: var(--textMuted); font-size: 0.85rem; margin-bottom: 15px; }
        .termsLink { display: block; text-align: center; margin-top: 15px; font-size: 0.85rem; color: var(--textMuted); }
        .tocNav { display: flex; overflow-x: auto; gap: 10px; padding: 15px 0; margin-bottom: 30px; scrollbar-width: none; }
        .tocNav::-webkit-scrollbar { display: none; }
        .tocLink { background: var(--bgElevated); color: var(--textPrimary); padding: 8px 16px; border-radius: var(--radiusPill); white-space: nowrap; font-size: 0.9rem; border: 1px solid var(--borderStrong); }
        .promoSection { display: flex; flex-direction: column; gap: 20px; }
        .promoCard { display: flex; flex-direction: column; gap: 15px; }
        .uspBar { display: flex; flex-direction: column; gap: 15px; margin: 30px 0; }
        .uspTile { display: flex; gap: 15px; align-items: flex-start; background: var(--bgSurface); padding: 15px; border-radius: var(--radiusMd); border: 1px solid var(--borderDefault); }
        .uspTile i { font-size: 1.5rem; color: var(--brandAccent); margin-top: 4px; }
        .uspTile strong { display: block; margin-bottom: 5px; }
        .paymentGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .paymentCard { text-align: center; padding: 20px; }
        .paymentCard i { font-size: 2rem; color: var(--brandAccent); margin-bottom: 10px; display: block; }
        .stepList { display: flex; flex-direction: column; gap: 20px; }
        .stepItem { display: flex; gap: 15px; align-items: flex-start; }
        .stepNum { background: var(--brandAccent); color: var(--textBrandContrast); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
        .stepContent h3 { margin: 0 0 8px 0; }
        .stepContent h3 a { color: inherit; }
        .downloadBox { background: var(--bgSurface); padding: 30px; border-radius: var(--radiusLg); text-align: center; border: 1px solid var(--borderStrong); }
        .guideItem { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--borderDefault); }
        .guideMeta { color: var(--textMuted); font-size: 0.8rem; margin-bottom: 10px; display: block; }
        .announcementGrid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .announcementItem { background: var(--bgSurface); padding: 15px; border-radius: var(--radiusMd); border-left: 4px solid var(--brandAccent); }
        .announcementItem i { color: var(--brandAccent); margin-right: 10px; }
        .announcementDate { font-size: 0.75rem; color: var(--textMuted); display: block; margin-top: 10px; }
        .faqSection { display: flex; flex-direction: column; gap: 10px; }
        .faqItem { border-bottom: 1px solid var(--borderDefault); }
        .faqItem summary { cursor: pointer; list-style: none; padding: 15px 0; }
        .faqItem summary h3 { margin: 0; display: flex; justify-content: space-between; align-items: center; }
        .faqItem summary h3::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.9rem; transition: 0.3s; }
        .faqItem[open] summary h3::after { transform: rotate(180deg); }
        .faqAnswer { padding: 0 0 15px 0; color: var(--textSecondary); }
        .aboutBox { background: var(--bgSurface); padding: 30px; border-radius: var(--radiusLg); line-height: 1.8; }
        .teamCard { background: var(--bgElevated); padding: 20px; border-radius: var(--radiusMd); margin-top: 20px; border: 1px solid var(--borderStrong); }
        .securityBox { background: var(--bgSurface); padding: 30px; border-radius: var(--radiusLg); border: 1px solid var(--borderDefault); }
        .rgLinks { display: flex; gap: 15px; margin: 20px 0; flex-wrap: wrap; }
        .rgLink { background: var(--bgElevated); padding: 10px 20px; border-radius: var(--radiusMd); border: 1px solid var(--borderStrong); font-size: 0.9rem; }
        footer { background: var(--bgSurface); padding: 40px 0 20px; border-top: 1px solid var(--borderDefault); margin-top: 50px; }
        .footerSitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footerSitemap a { color: var(--textSecondary); font-size: 0.9rem; }
        .footerContact { text-align: center; margin-bottom: 20px; color: var(--textSecondary); }
        .footerLegal { text-align: center; font-size: 0.8rem; color: var(--textMuted); padding: 0 20px; }
        .navigator { position: fixed; inset-inline: 0; bottom: 0; height: 72px; background: var(--bgSurface); border-top: 1px solid var(--borderDefault); display: flex; justify-content: space-around; align-items: center; padding-bottom: env(safe-area-inset-bottom); z-index: 1000; }
        .navItem { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--textSecondary); font-size: 0.7rem; gap: 4px; text-decoration: none; }
        .navItem i { font-size: 1.2rem; }
        .navItem:hover { color: var(--brandAccent); }
        .utilLink { text-align: center; display: block; margin-top: 15px; font-weight: 600; color: var(--brandAccent); }
        section { content-visibility: auto; contain-intrinsic-size: 1px 500px; }
        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .categoryGrid { grid-template-columns: repeat(3, 1fr); }
            .gameGrid { grid-template-columns: repeat(2, 1fr); }
            .paymentGrid { grid-template-columns: repeat(3, 1fr); }
            .navigator { display: none; }
            .promoSection { display: grid; grid-template-columns: repeat(3, 1fr); }
            .promoCard { height: 100%; }
            .uspBar { display: grid; grid-template-columns: repeat(3, 1fr); }
            .stepList { display: grid; grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .categoryGrid { grid-template-columns: repeat(4, 1fr); }
            .gameGrid { grid-template-columns: repeat(4, 1fr); }
            .paymentGrid { grid-template-columns: repeat(4, 1fr); }
            .stepList { grid-template-columns: repeat(4, 1fr); }
        }