@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Rajdhani:wght@600;700&family=Space+Mono&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: #050B1A;
            color: #E6EEFF;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        .headerLogo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        .headerBrand { font-size: 16px; font-weight: 400; }
        .headerActions { display: flex; gap: 12px; }
        .btnNav {
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: background 0.3s;
        }
        .btnSignIn { background: #16213D; color: #E6EEFF; border: 1px solid #2A3B66; }
        .btnSignUp { background: #00F5FF; color: #050B1A; }
        .btnSignUp:hover { background: #66FFFF; }
        main { max-width: 1200px; margin: 0 auto; }
        h1, h2, h3 { font-family: 'Rajdhani', sans-serif; letter-spacing: -0.02em; margin-top: 0; }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; color: #00F5FF; margin-bottom: 1rem; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.5rem; color: #E6EEFF; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; color: #AAB8D1; }
        .heroSection { text-align: center; padding: 40px 0; }
        .heroText { max-width: 800px; margin: 0 auto 2rem; color: #AAB8D1; }
        .heroCta {
            display: block;
            width: 100%;
            background: linear-gradient(to right, #00F5FF, #00C2FF);
            color: #050B1A;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            padding: 18px;
            border-radius: 16px;
            box-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
            transition: transform 0.2s;
        }
        .heroCta:hover { transform: scale(1.02); }
        .heroTags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 2rem; }
        .tagPill {
            background: #0D152B;
            border: 1px solid #00F5FF;
            color: #00F5FF;
            padding: 6px 14px;
            border-radius: 9999px;
            font-size: 0.875rem;
        }
        .bannerLink { display: block; width: 100%; margin: 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: 16px;
            margin-bottom: 3rem;
        }
        .categoryTile {
            background: #0D152B;
            border: 1px solid #1C2B4D;
            padding: 20px;
            border-radius: 16px;
            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: 12px; }
        .categoryLabel { display: block; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; color: #E6EEFF; }
        .categoryDesc { font-size: 0.875rem; color: #7084A3; display: block; }
        .gameGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .gameCard {
            background: #0D152B;
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid #1C2B4D;
            transition: transform 0.2s;
        }
        .gameCard:hover { transform: translateY(-5px); }
        .gameImg { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .gameInfo { padding: 12px; text-align: center; }
        .gameInfo h3 { margin: 0; font-size: 1rem; }
        .factsWrapper { background: #0D152B; border-radius: 16px; padding: 24px; border: 1px solid #1C2B4D; }
        .freshnessNotice { font-style: italic; color: #7084A3; font-size: 0.875rem; margin-bottom: 1.5rem; display: block; }
        .factsTable { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
        .factsRow { border-bottom: 1px solid #1C2B4D; }
        .factsLabel { padding: 12px 0; color: #AAB8D1; font-weight: 500; width: 40%; }
        .factsValue { padding: 12px 0; color: #E6EEFF; text-align: right; }
        .termsLink { display: block; text-align: center; color: #00F5FF; text-decoration: none; font-size: 0.875rem; margin-top: 12px; }
        .tocNav {
            display: flex;
            overflow-x: auto;
            gap: 12px;
            padding: 20px 0;
            scrollbar-width: none;
        }
        .tocNav::-webkit-scrollbar { display: none; }
        .tocLink {
            background: #16213D;
            color: #E6EEFF;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            white-space: nowrap;
            font-size: 0.875rem;
            border: 1px solid #2A3B66;
        }
        .promoGrid { display: grid; gap: 20px; }
        .promoCard {
            background: #0D152B;
            border: 1px solid #2A3B66;
            padding: 24px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .promoCta {
            align-self: flex-start;
            background: #00F5FF;
            color: #050B1A;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
        }
        .uspBar { display: grid; gap: 16px; }
        .uspTile {
            background: #16213D;
            padding: 20px;
            border-radius: 16px;
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .uspIcon { font-size: 1.5rem; color: #00F5FF; }
        .uspContent strong { display: block; font-size: 1.1rem; color: #E6EEFF; }
        .uspContent span { font-size: 0.875rem; color: #AAB8D1; }
        .paymentGrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .payCard {
            background: #0D152B;
            border: 1px solid #1C2B4D;
            padding: 16px;
            border-radius: 16px;
            text-align: center;
        }
        .payIcon { font-size: 1.5rem; color: #00F5FF; margin-bottom: 12px; }
        .payName { display: block; font-weight: 700; margin-bottom: 8px; }
        .payDesc { font-size: 0.8rem; color: #7084A3; display: block; }
        .guideSteps { display: grid; gap: 20px; }
        .stepCard {
            display: flex;
            gap: 16px;
            background: #0D152B;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid #1C2B4D;
        }
        .stepNum {
            width: 36px;
            height: 36px;
            background: #00F5FF;
            color: #050B1A;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        .stepLink { text-decoration: none; color: inherit; }
        .appSection {
            background: #16213D;
            padding: 32px;
            border-radius: 16px;
            text-align: center;
        }
        .appBtn {
            display: inline-block;
            background: #00F5FF;
            color: #050B1A;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            margin: 20px 0;
        }
        .playerGuides { display: grid; gap: 20px; }
        .guideItem {
            background: #0D152B;
            padding: 20px;
            border-radius: 16px;
            border-left: 4px solid #00F5FF;
        }
        .metaText { font-size: 0.8rem; color: #7084A3; display: block; margin-bottom: 10px; }
        .announcementGrid { display: grid; gap: 16px; }
        .announceCard {
            background: #0D152B;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid #1C2B4D;
            display: flex;
            gap: 16px;
        }
        .announceIcon { font-size: 1.2rem; color: #00F5FF; }
        .faqWrapper { display: grid; gap: 12px; }
        details { background: #0D152B; border: 1px solid #1C2B4D; border-radius: 12px; }
        summary { padding: 16px; cursor: pointer; list-style: none; }
        summary h3 { margin: 0; font-size: 1.1rem; color: #E6EEFF; }
        .faqAns { padding: 0 16px 16px; color: #AAB8D1; font-size: 0.95rem; }
        .aboutSection { padding: 32px 0; }
        .teamCard {
            background: #16213D;
            padding: 24px;
            border-radius: 16px;
            margin-top: 2rem;
            border: 1px solid #00F5FF;
        }
        .securityBox { background: #0D152B; padding: 24px; border-radius: 16px; border: 1px solid #1C2B4D; }
        .externalLinks { display: flex; gap: 16px; margin: 1rem 0; }
        .extLink { color: #00F5FF; text-decoration: none; font-size: 0.875rem; }
        footer {
            margin-top: 4rem;
            padding: 40px 0;
            border-top: 1px solid #1C2B4D;
            text-align: center;
        }
        .footerSitemap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 2rem;
            text-align: left;
        }
        .footerLink { color: #AAB8D1; text-decoration: none; font-size: 0.875rem; }
        .footerContact { margin-bottom: 1.5rem; font-size: 0.875rem; }
        .footerLegal { font-size: 0.75rem; color: #7084A3; line-height: 1.4; }
        .navigator {
            position: fixed;
            inset-inline: 0;
            bottom: 0;
            background: #0D152B;
            border-top: 1px solid #1C2B4D;
            display: flex;
            justify-content: space-around;
            padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
            z-index: 1000;
        }
        .navItem {
            text-decoration: none;
            color: #AAB8D1;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.75rem;
            gap: 4px;
        }
        .navItem i { font-size: 1.2rem; }
        .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); }
            .gameGrid { grid-template-columns: repeat(4, 1fr); }
            .paymentGrid { grid-template-columns: repeat(4, 1fr); }
            .navigator { display: none; }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
            .categoryGrid { grid-template-columns: repeat(4, 1fr); }
        }