@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Rajdhani:wght@600;700&display=swap');
        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: #040B1A;
            color: #E6F0FF;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-block: 12px;
            max-width: 1200px;
            margin-inline: auto;
        }
        .headerLogo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: inherit;
        }
        .headerBrand {
            font-size: 16px;
            font-weight: normal;
        }
        .headerActions {
            display: flex;
            gap: 10px;
        }
        .btnBase {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 18px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s, opacity 0.2s;
            cursor: pointer;
            border: none;
        }
        .btnPrimary {
            background: linear-gradient(180deg, #00F5FF 0%, #00C4CC 100%);
            color: #040B1A;
        }
        .btnSecondary {
            background-color: #132142;
            color: #E6F0FF;
            border: 1px solid #1E2D52;
        }
        .btnBase:hover { opacity: 0.9; transform: translateY(-1px); }
        h1, h2, h3 { font-family: 'Rajdhani', sans-serif; letter-spacing: -0.02em; margin-top: 0; }
        h1 { font-size: clamp(1.6rem, 6.5vw, 3rem); line-height: 1.2; margin-block: 1rem 1.5rem; color: #00F5FF; text-align: center; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 2.25rem); line-height: 1.25; margin-top: 3rem; margin-bottom: 1.5rem; color: #E6F0FF; text-align: center; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.75rem); line-height: 1.3; color: #A0B1D1; }
        img { max-width: 100%; height: auto; display: block; font-style: italic; }
        main { max-width: 1200px; margin-inline: auto; }
        .heroSection { text-align: center; padding-block: 2rem 0; }
        .heroIntro { font-size: 1.1rem; color: #A0B1D1; max-width: 800px; margin: 0 auto 2rem; }
        .heroCta { display: block; width: 100%; max-width: 400px; margin: 0 auto 2rem; }
        .heroTags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .tagPill { background: #0B152B; border: 1px solid #00F5FF; color: #00F5FF; padding: 4px 12px; border-radius: 9999px; font-size: 0.875rem; }
        .bannerLink { display: block; width: 100%; margin-block: 2rem 0; }
        .bannerImg { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; border-radius: 16px; }
        .categoryGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-block: 2rem 0; }
        .categoryTile { 
            background: #0B152B; 
            border: 1px solid #1E2D52; 
            border-radius: 16px; 
            padding: 20px; 
            text-decoration: none; 
            color: inherit; 
            text-align: center; 
            transition: border-color 0.3s; 
        }
        .categoryTile:hover { border-color: #00F5FF; }
        .categoryIcon { font-size: 2rem; color: #00F5FF; margin-bottom: 10px; display: block; }
        .categoryLabel { display: block; font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; color: #E6F0FF; }
        .categoryDesc { font-size: 0.875rem; color: #6B7C99; }
        .gamesGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-block: 2rem 0; }
        .gameCard { 
            background: #0B152B; 
            border-radius: 16px; 
            text-decoration: none; 
            color: inherit; 
            overflow: hidden; 
            border: 1px solid #1E2D52; 
            transition: transform 0.2s; 
        }
        .gameCard:hover { transform: scale(1.02); }
        .gameImg { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .gameInfo { padding: 12px; text-align: center; }
        .gameInfo h3 { font-size: 1rem; margin: 0; color: #E6F0FF; }
        .factsWrapper { background: #0B152B; border-radius: 16px; padding: 20px; margin-block: 2rem 0; }
        .freshnessNotice { font-style: italic; color: #6B7C99; text-align: center; margin-bottom: 1.5rem; font-size: 0.9rem; }
        .factsTable { width: 100%; border-collapse: collapse; }
        .factsRow { border-bottom: 1px solid #1E2D52; }
        .factsLabel { padding: 12px; color: #A0B1D1; font-weight: 500; width: 40%; }
        .factsValue { padding: 12px; color: #E6F0FF; text-align: right; }
        .termsLink { display: block; text-align: center; margin-top: 1rem; color: #00F5FF; text-decoration: none; font-size: 0.875rem; }
        .tocNav { 
            display: flex; 
            overflow-x: auto; 
            gap: 10px; 
            padding-block: 1rem; 
            scrollbar-width: none; 
            justify-content: center; 
        }
        .tocNav::-webkit-scrollbar { display: none; }
        .tocLink { 
            background: #132142; 
            color: #E6F0FF; 
            text-decoration: none; 
            padding: 8px 16px; 
            border-radius: 8px; 
            white-space: nowrap; 
            font-size: 0.9rem; 
            border: 1px solid #1E2D52; 
        }
        .tocLink:hover { background: #1E2D52; color: #00F5FF; }
        .promoGrid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-block: 2rem 0; }
        .promoCard { 
            background: #0B152B; 
            border-radius: 16px; 
            padding: 24px; 
            border-left: 4px solid #00F5FF; 
            display: flex; 
            flex-direction: column; 
            gap: 12px; 
        }
        .promoCard h3 { color: #E6F0FF; }
        .promoText { color: #A0B1D1; margin: 0; }
        .uspBar { display: grid; grid-template-columns: 1fr; gap: 20px; margin-block: 3rem 0; }
        .uspTile { 
            background: #0B152B; 
            padding: 20px; 
            border-radius: 16px; 
            text-align: center; 
            border: 1px solid #1E2D52; 
        }
        .uspIcon { font-size: 2rem; color: #00F5FF; margin-bottom: 10px; display: block; }
        .uspTitle { display: block; font-weight: 700; margin-bottom: 8px; color: #E6F0FF; }
        .uspDesc { font-size: 0.9rem; color: #6B7C99; }
        .paymentGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-block: 2rem 0; }
        .payCard { 
            background: #0B152B; 
            padding: 20px; 
            border-radius: 16px; 
            text-align: center; 
            border: 1px solid #1E2D52; 
        }
        .payIcon { font-size: 1.5rem; color: #00F5FF; margin-bottom: 10px; display: block; }
        .payName { display: block; font-weight: 600; margin-bottom: 8px; }
        .payDesc { font-size: 0.8rem; color: #6B7C99; }
        .guideSteps { display: grid; grid-template-columns: 1fr; gap: 20px; margin-block: 2rem 0; }
        .stepItem { 
            background: #0B152B; 
            padding: 20px; 
            border-radius: 16px; 
            display: flex; 
            gap: 15px; 
            align-items: flex-start; 
        }
        .stepBadge { 
            background: #00F5FF; 
            color: #040B1A; 
            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; color: #E6F0FF; font-size: 1.2rem; }
        .stepContent h3 a { color: inherit; text-decoration: none; }
        .stepText { color: #A0B1D1; margin: 0; font-size: 0.95rem; }
        .downloadBox { 
            background: linear-gradient(135deg, #0B152B 0%, #132142 100%); 
            border: 1px solid #00F5FF; 
            border-radius: 20px; 
            padding: 30px; 
            text-align: center; 
            margin-block: 2rem 0; 
        }
        .downloadText { color: #A0B1D1; margin-bottom: 2rem; max-width: 700px; margin-inline: auto; }
        .playerGuide { display: grid; grid-template-columns: 1fr; gap: 20px; margin-block: 2rem 0; }
        .guideItem { background: #0B152B; padding: 20px; border-radius: 16px; border: 1px solid #1E2D52; }
        .guideMeta { font-size: 0.8rem; color: #6B7C99; margin-bottom: 10px; display: block; }
        .announcementGrid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-block: 2rem 0; }
        .announcementItem { 
            background: #0B152B; 
            padding: 15px; 
            border-radius: 12px; 
            display: flex; 
            gap: 12px; 
            align-items: center; 
            border: 1px solid #1E2D52; 
        }
        .announcementIcon { color: #00F5FF; font-size: 1.2rem; }
        .announcementDetails { flex: 1; }
        .announcementTitle { font-weight: 600; color: #E6F0FF; display: block; margin-bottom: 4px; }
        .announcementDate { font-size: 0.8rem; color: #6B7C99; }
        .faqItem { background: #0B152B; border-radius: 16px; margin-block: 10px; overflow: hidden; border: 1px solid #1E2D52; }
        .faqSummary { list-style: none; padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #132142; }
        .faqSummary h3 { margin: 0; font-size: 1.1rem; color: #E6F0FF; }
        .faqAnswer { padding: 20px; color: #A0B1D1; border-top: 1px solid #1E2D52; }
        .aboutSection { background: #0B152B; padding: 30px; border-radius: 20px; margin-block: 2rem 0; }
        .teamCard { background: #132142; padding: 20px; border-radius: 16px; margin-top: 2rem; border: 1px solid #00F5FF; }
        .securitySection { background: #0B152B; padding: 30px; border-radius: 20px; margin-block: 2rem 0; text-align: center; }
        .rgLinks { display: flex; justify-content: center; gap: 15px; margin-block: 20px; flex-wrap: wrap; }
        .rgLink { color: #00F5FF; text-decoration: none; font-weight: 500; border: 1px solid #00F5FF; padding: 5px 15px; border-radius: 8px; }
        footer { background: #040B1A; padding-block: 40px 0; margin-top: 4rem; border-top: 1px solid #1E2D52; text-align: center; }
        .footerSitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 800px; margin: 0 auto 30px; }
        .footerLink { color: #A0B1D1; text-decoration: none; font-size: 0.9rem; }
        .footerLink:hover { color: #00F5FF; }
        .footerContact { margin-bottom: 20px; color: #A0B1D1; }
        .footerContact a { color: #00F5FF; text-decoration: none; }
        .footerLegal { font-size: 0.8rem; color: #6B7C99; line-height: 1.5; }
        .navigator { 
            position: fixed; 
            inset-inline: 0; 
            bottom: 0; 
            background: #0B152B; 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            padding-block: 10px; 
            padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); 
            border-top: 1px solid #1E2D52; 
            z-index: 1000; 
        }
        .navItem { text-decoration: none; color: #A0B1D1; display: flex; flex-direction: column; align-items: center; font-size: 0.75rem; gap: 4px; }
        .navItem i { font-size: 1.2rem; }
        .navItem:hover { color: #00F5FF; }
        .utilLink { color: #00F5FF; text-decoration: none; font-weight: 600; }
        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); }
            .gamesGrid { grid-template-columns: repeat(2, 1fr); }
            .paymentGrid { grid-template-columns: repeat(4, 1fr); }
            .guideSteps { grid-template-columns: repeat(2, 1fr); }
            .playerGuide { grid-template-columns: repeat(2, 1fr); }
            .announcementGrid { grid-template-columns: repeat(2, 1fr); }
            .navigator { position: static; display: none; }
            footer { padding-bottom: 24px; }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .categoryGrid { grid-template-columns: repeat(4, 1fr); }
            .gamesGrid { grid-template-columns: repeat(4, 1fr); }
            .paymentGrid { grid-template-columns: repeat(7, 1fr); }
            .guideSteps { grid-template-columns: repeat(4, 1fr); }
            .playerGuide { grid-template-columns: repeat(2, 1fr); }
            .announcementGrid { grid-template-columns: repeat(2, 1fr); }
        }