:root {
            --brandPrimary: #0D4D3F;
            --brandPrimaryHover: #146352;
            --brandSecondary: #D4B886;
            --brandSecondaryHover: #E5CE9B;
            --brandAccent: #F4D03F;
            --bgMain: #041A15;
            --bgSurface: #082620;
            --bgElevated: #0C332B;
            --bgOverlay: rgba(4, 26, 21, 0.8);
            --textPrimary: #E8F2EF;
            --textSecondary: #B0C4C0;
            --textMuted: #7A8F8B;
            --textBrandContrast: #041A15;
            --linkColor: #D4B886;
            --linkHover: #F4D03F;
            --btnBg: #D4B886;
            --btnText: #041A15;
            --btnHoverBg: #F4D03F;
            --success: #2ECC71;
            --error: #E74C3C;
            --warning: #F1C40F;
            --info: #3498DB;
            --borderDefault: #163D34;
            --borderStrong: #245C4D;
            --borderBrand: rgba(212, 184, 134, 0.4);
            --radiusSm: 4px;
            --radiusMd: 12px;
            --radiusLg: 24px;
            --radiusPill: 9999px;
            --shadowCard: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            --shadowElevated: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
            --shadowGlow: 0 0 15px rgba(244, 208, 63, 0.4);
            --gradBrand: linear-gradient(135deg, #0D4D3F 0%, #041A15 100%);
            --gradHero: radial-gradient(circle at center, #0C332B 0%, #041A15 100%);
            --gradButton: linear-gradient(to bottom, #D4B886 0%, #B89B65 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);
        }
        img, video, iframe { max-width: 100%; height: auto; display: block; }
        a { color: var(--linkColor); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--linkHover); }
        .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;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }
        .btnPrimary { background: var(--gradButton); color: var(--btnText); }
        .btnPrimary:hover { background: var(--btnHoverBg); transform: translateY(-2px); box-shadow: var(--shadowGlow); }
        .btnOutline { background: transparent; color: var(--brandSecondary); border: 1px solid var(--borderBrand); }
        .btnOutline:hover { background: var(--borderBrand); color: var(--textPrimary); }
        h1 { font-family: 'Be Vietnam Pro', sans-serif; font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin: 0 0 1rem 0; font-weight: 700; color: var(--brandSecondary); }
        h2 { font-family: 'Be Vietnam Pro', sans-serif; font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.25rem; font-weight: 600; color: var(--textPrimary); }
        h3 { font-family: 'Be Vietnam Pro', sans-serif; font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin-bottom: 0.75rem; font-weight: 600; color: var(--textSecondary); }
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid var(--borderDefault);
        }
        .headerLogo { display: flex; align-items: center; gap: 8px; }
        .headerLogo strong { font-size: 16px; font-weight: 400; }
        .headerActions { display: flex; gap: 10px; }
        main { width: 100%; }
        .heroSection {
            padding: 2rem 0;
            text-align: center;
            background: var(--gradHero);
            border-radius: var(--radiusLg);
            margin-bottom: 2rem;
        }
        .heroIntro { max-width: 800px; margin: 0 auto 1.5rem auto; padding: 0 1rem; color: var(--textSecondary); }
        .heroCta { display: block; width: 100%; max-width: 400px; margin: 0 auto; }
        .heroTags { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 1.5rem; }
        .tagPill {
            background: var(--bgElevated);
            border: 1px solid var(--borderBrand);
            padding: 4px 12px;
            border-radius: var(--radiusPill);
            font-size: 0.8rem;
            color: var(--brandSecondary);
        }
        .bannerLink { display: block; width: 100%; line-height: 0; margin-bottom: 2rem; }
        .bannerImg { width: 1024px; height: 512px; aspect-ratio: 2/1; object-fit: cover; }
        .categoryGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 2rem;
        }
        .categoryTile {
            background: var(--bgSurface);
            border: 1px solid var(--borderDefault);
            padding: 1.25rem;
            border-radius: var(--radiusMd);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .categoryTile:hover { border-color: var(--brandSecondary); background: var(--bgElevated); transform: translateY(-3px); }
        .categoryTile i { font-size: 1.5rem; color: var(--brandSecondary); }
        .categoryTile span { font-weight: 600; color: var(--textPrimary); }
        .categoryTile p { font-size: 0.85rem; color: var(--textMuted); margin: 0; }
        .gameGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 2rem;
        }
        .gameCard {
            background: var(--bgSurface);
            border-radius: var(--radiusMd);
            overflow: hidden;
            border: 1px solid var(--borderDefault);
            transition: all 0.3s ease;
        }
        .gameCard:hover { border-color: var(--brandSecondary); box-shadow: var(--shadowCard); }
        .gameCard img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .gameCard h3 { padding: 12px; margin: 0; font-size: 1rem; text-align: center; color: var(--textPrimary); }
        .factsSection { margin-bottom: 2rem; }
        .freshnessNotice { font-style: italic; color: var(--textMuted); font-size: 0.85rem; margin-bottom: 1rem; display: block; }
        .factsTable {
            width: 100%;
            border-collapse: collapse;
            background: var(--bgSurface);
            border-radius: var(--radiusMd);
            overflow: hidden;
            border: 1px solid var(--borderDefault);
        }
        .factsTable tr { border-bottom: 1px solid var(--borderDefault); }
        .factsTable td { padding: 12px 15px; font-size: 0.95rem; }
        .factsTable td:first-child { font-weight: 600; color: var(--brandSecondary); width: 40%; }
        .factsTable td:last-child { color: var(--textSecondary); }
        .factsTable tr:last-child { border-bottom: none; }
        .termsLink { display: block; text-align: center; margin-top: 1rem; font-size: 0.85rem; color: var(--textMuted); }
        .tocNav {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding-bottom: 10px;
            margin-bottom: 2rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .tocNav::-webkit-scrollbar { display: none; }
        .tocLink {
            background: var(--bgSurface);
            border: 1px solid var(--borderDefault);
            padding: 8px 16px;
            border-radius: var(--radiusPill);
            white-space: nowrap;
            font-size: 0.9rem;
            color: var(--textSecondary);
        }
        .tocLink:hover { background: var(--brandPrimary); color: var(--textPrimary); }
        .promoGrid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 2rem; }
        .promoCard {
            background: var(--bgSurface);
            border: 1px solid var(--borderDefault);
            padding: 1.5rem;
            border-radius: var(--radiusMd);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .promoCard h3 { color: var(--brandSecondary); margin: 0; }
        .uspBar { display: flex; flex-direction: column; gap: 15px; margin-bottom: 2rem; }
        .uspTile {
            background: var(--bgSurface);
            border: 1px solid var(--borderDefault);
            padding: 1.25rem;
            border-radius: var(--radiusMd);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .uspTile i { font-size: 1.5rem; color: var(--brandAccent); }
        .uspTile strong { display: block; color: var(--textPrimary); font-size: 1rem; }
        .uspTile p { margin: 0; font-size: 0.85rem; color: var(--textSecondary); }
        .paymentGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 2rem;
        }
        .paymentCard {
            background: var(--bgSurface);
            border: 1px solid var(--borderDefault);
            padding: 1rem;
            border-radius: var(--radiusMd);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .paymentCard i { font-size: 1.5rem; color: var(--brandSecondary); }
        .paymentCard strong { color: var(--textPrimary); font-size: 0.95rem; }
        .paymentCard p { font-size: 0.8rem; color: var(--textMuted); margin: 0; }
        .guideList { display: flex; flex-direction: column; gap: 20px; margin-bottom: 2rem; }
        .guideStep {
            display: flex;
            gap: 15px;
            background: var(--bgSurface);
            padding: 1.5rem;
            border-radius: var(--radiusMd);
            border: 1px solid var(--borderDefault);
        }
        .stepBadge {
            min-width: 32px;
            height: 32px;
            background: var(--brandSecondary);
            color: var(--btnText);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .guideStep h3 { margin: 0 0 8px 0; }
        .guideStep h3 a { color: inherit; }
        .downloadSection {
            background: var(--bgSurface);
            padding: 2rem;
            border-radius: var(--radiusLg);
            text-align: center;
            margin-bottom: 2rem;
            border: 1px solid var(--borderDefault);
        }
        .playerGuide { margin-bottom: 2rem; }
        .guideItem {
            background: var(--bgSurface);
            padding: 1.5rem;
            border-radius: var(--radiusMd);
            margin-bottom: 15px;
            border-left: 4px solid var(--brandSecondary);
        }
        .guideMeta { font-size: 0.8rem; color: var(--textMuted); margin-bottom: 10px; display: block; }
        .announcementGrid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 2rem; }
        .announcementCard {
            background: var(--bgSurface);
            padding: 1.25rem;
            border-radius: var(--radiusMd);
            border: 1px solid var(--borderDefault);
            display: flex;
            gap: 15px;
        }
        .announcementCard i { color: var(--brandAccent); margin-top: 4px; }
        .announcementContent h3 { margin: 0 0 5px 0; font-size: 1.1rem; }
        .announcementDate { font-size: 0.8rem; color: var(--textMuted); display: block; margin-top: 8px; }
        .faqSection { margin-bottom: 2rem; }
        .faqItem {
            background: var(--bgSurface);
            margin-bottom: 10px;
            border-radius: var(--radiusMd);
            border: 1px solid var(--borderDefault);
            overflow: hidden;
        }
        .faqItem summary {
            padding: 15px;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--textPrimary);
        }
        .faqItem summary::-webkit-details-marker { display: none; }
        .faqItem p { padding: 15px; margin: 0; color: var(--textSecondary); border-top: 1px solid var(--borderDefault); }
        .aboutSection {
            background: var(--bgSurface);
            padding: 2rem;
            border-radius: var(--radiusLg);
            margin-bottom: 2rem;
            border: 1px solid var(--borderDefault);
        }
        .teamCard {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--bgElevated);
            border-radius: var(--radiusMd);
            border: 1px solid var(--borderBrand);
        }
        .securitySection {
            background: var(--bgSurface);
            padding: 2rem;
            border-radius: var(--radiusLg);
            margin-bottom: 2rem;
            border: 1px solid var(--borderDefault);
        }
        .securitySection a { display: block; margin-bottom: 8px; }
        footer {
            background: var(--bgSurface);
            padding: 2rem 0;
            border-top: 1px solid var(--borderDefault);
            text-align: center;
        }
        .footerSitemap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 2rem auto;
        }
        .footerSitemap a { font-size: 0.9rem; color: var(--textSecondary); }
        .footerContact { margin-bottom: 1.5rem; font-size: 0.95rem; }
        .footerLegal { font-size: 0.85rem; color: var(--textMuted); line-height: 1.5; }
        .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;
            backdrop-filter: blur(10px);
        }
        .navItem {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--textSecondary);
            font-size: 0.75rem;
            gap: 4px;
            text-decoration: none;
        }
        .navItem i { font-size: 1.25rem; }
        .navItem:hover { color: var(--brandSecondary); }
        .utilityLink { display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--brandSecondary); }

        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .categoryGrid { grid-template-columns: repeat(3, 1fr); }
            .gameGrid { grid-template-columns: repeat(4, 1fr); }
            .paymentGrid { grid-template-columns: repeat(4, 1fr); }
            .navigator { position: static; height: auto; padding: 2rem 0; border-top: none; display: none; }
            .heroSection { padding: 4rem 2rem; }
        }
        @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); }
        }
        section { content-visibility: auto; contain-intrinsic-size: 1px 500px; }