@charset "UTF-8";
:root {
    --bg: #24003f;
    --bg-deep: #16002b;
    --bg-soft: #2d0052;
    --bg-card: rgba(60, 0, 100, 0.56);
    --cyan: #25dff5;
    --pink: #f06bea;
    --lavender: #8f7bff;
    --title: #bfffff;
    --text: #ffffff;
    --muted: #d8c7ff;
    --quiet: #b99ee8;
    --border: rgba(191, 255, 255, 0.14);
    --shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(37, 223, 245, 0.08), transparent 28rem),
        radial-gradient(circle at 85% 18%, rgba(240, 107, 234, 0.11), transparent 30rem),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}
body.drawer-open { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(37, 223, 245, 0.28); color: #fff; }

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 5000;
    padding: 10px 16px;
    border-radius: 8px;
    color: #16002b;
    background: #bfffff;
    transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow-container { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.section { position: relative; padding: 92px 0; }
.section-soft { background: linear-gradient(180deg, rgba(45,0,82,.54), rgba(22,0,43,.2)); }
.section-tight { padding: 58px 0; }
.section-heading { max-width: 780px; margin-bottom: 36px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .section-title, h1, h2, h3 {
    margin-top: 0;
    color: var(--title);
    text-shadow: 0 0 18px rgba(37,223,245,0.20);
    line-height: 1.22;
}
h1 { font-size: clamp(2.55rem, 6vw, 5.3rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.15rem; }
p { margin-top: 0; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 2vw, 1.24rem); color: #efe8ff; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: rgba(36, 0, 63, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { background: rgba(22,0,43,.94); border-color: rgba(191,255,255,.12); box-shadow: 0 12px 34px rgba(0,0,0,.28); }
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: clamp(132px, 14vw, 180px); height: auto; object-fit: contain; }
.desktop-nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: clamp(12px, 2vw, 28px); white-space: nowrap; }
.desktop-nav a { position: relative; padding: 25px 0 22px; color: #fff; font-size: .95rem; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 15px; height: 2px; background: linear-gradient(90deg,var(--cyan),var(--pink)); transition: left .2s ease,right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { left: 0; right: 0; }
.desktop-nav a.is-active { color: var(--title); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
    box-shadow: 0 14px 30px rgba(240,107,234,0.26);
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.main-btn:hover { transform: translateY(-1px); box-shadow: 0 18px 40px rgba(37,223,245,0.30); filter: saturate(1.08); }
.menu-toggle { width: 46px; height: 46px; display: inline-grid; place-content: center; gap: 5px; border: 1px solid rgba(191,255,255,.18); border-radius: 10px; background: rgba(60,0,100,.55); cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; border-radius: 99px; background: #fff; }
.drawer-overlay { position: fixed; inset: 0; z-index: 2000; opacity: 0; background: rgba(10,0,22,.72); backdrop-filter: blur(3px); transition: opacity .24s ease; }
.drawer-overlay.is-visible { opacity: 1; }
.side-drawer { position: fixed; z-index: 2100; top: 0; right: 0; width: min(90vw, 390px); height: 100dvh; overflow-y: auto; transform: translateX(104%); border-left: 1px solid rgba(191,255,255,.16); background: linear-gradient(180deg,#24003f,#130022); box-shadow: -24px 0 70px rgba(0,0,0,.45); transition: transform .28s ease; }
.side-drawer.is-open { transform: translateX(0); }
.drawer-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(191,255,255,.12); background: rgba(22,0,43,.95); backdrop-filter: blur(14px); }
.drawer-brand img { width: 155px; height: auto; }
.drawer-close { width: 42px; height: 42px; border: 1px solid rgba(191,255,255,.16); border-radius: 50%; background: rgba(60,0,100,.62); font-size: 1.65rem; cursor: pointer; }
.drawer-nav { display: grid; padding: 18px; }
.drawer-nav a { padding: 13px 14px; border-bottom: 1px solid rgba(191,255,255,.08); color: #fff; font-weight: 700; }
.drawer-nav a:hover { color: var(--cyan); background: rgba(37,223,245,.05); }
.drawer-note { margin: 4px 18px 28px; padding: 18px; border: 1px solid rgba(240,107,234,.18); border-radius: 14px; background: rgba(74,0,127,.35); }
.drawer-note strong { color: var(--title); }
.drawer-note p { margin: 6px 0 0; font-size: .9rem; }

.emoji-field { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; opacity: .48; }
.emoji { position: absolute; bottom: -80px; font-size: clamp(18px, 2vw, 31px); filter: drop-shadow(0 0 10px rgba(37,223,245,.25)); animation: floatUp linear infinite, drift ease-in-out infinite alternate; }
.e1 { left: 2%; animation-duration: 18s,4s; animation-delay: -3s; }
.e2 { left: 8%; animation-duration: 25s,5s; animation-delay: -12s; }
.e3 { left: 15%; animation-duration: 22s,6s; animation-delay: -5s; }
.e4 { left: 24%; animation-duration: 28s,4.5s; animation-delay: -17s; }
.e5 { left: 72%; animation-duration: 24s,5.5s; animation-delay: -7s; }
.e6 { left: 80%; animation-duration: 21s,4s; animation-delay: -13s; }
.e7 { left: 88%; animation-duration: 27s,6s; animation-delay: -2s; }
.e8 { left: 95%; animation-duration: 19s,4.2s; animation-delay: -11s; }
.e9 { left: 4%; animation-duration: 31s,5.8s; animation-delay: -22s; }
.e10 { left: 91%; animation-duration: 29s,5.2s; animation-delay: -19s; }
.e11 { left: 12%; animation-duration: 26s,4.7s; animation-delay: -16s; }
.e12 { left: 84%; animation-duration: 33s,6.2s; animation-delay: -24s; }
@keyframes floatUp { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 12% { opacity: .72; } 82% { opacity: .42; } 100% { transform: translateY(-115vh) rotate(16deg); opacity: 0; } }
@keyframes drift { from { margin-left: -12px; } to { margin-left: 18px; } }
main, .site-footer, .site-header { position: relative; }
main, .site-footer { z-index: 1; }

.hero-home { position: relative; min-height: min(790px, calc(100vh - 76px)); display: grid; align-items: center; isolation: isolate; overflow: hidden; background-image: linear-gradient(180deg,rgba(22,0,43,.56) 0%,rgba(36,0,63,.64) 62%,#24003f 100%), url('背景.webp'); background-position: center; background-size: cover; }
.hero-home::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 220px; z-index: -1; background: linear-gradient(180deg,transparent,rgba(102,0,176,.38) 52%,#24003f); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(330px,.95fr); align-items: center; gap: 52px; padding: 78px 0 96px; }
.hero-copy { max-width: 700px; }
.hero-copy .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--title); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-trust span { padding: 7px 12px; border: 1px solid rgba(191,255,255,.16); border-radius: 999px; color: #e8ddff; background: rgba(22,0,43,.45); font-size: .88rem; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 12% 8%; z-index: -1; border-radius: 50%; background: radial-gradient(circle,rgba(37,223,245,.28),rgba(240,107,234,.14) 42%,transparent 70%); filter: blur(18px); }
.hero-visual img { width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 28px 50px rgba(0,0,0,.42)); animation: heroFloat 5s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.highlight-strip { position: relative; margin-top: -34px; z-index: 2; }
.highlight-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(191,255,255,.14); border-radius: 20px; overflow: hidden; background: rgba(35,0,63,.76); box-shadow: 0 22px 54px rgba(0,0,0,.32); backdrop-filter: blur(14px); }
.highlight-item { padding: 24px; border-right: 1px solid rgba(191,255,255,.10); }
.highlight-item:last-child { border-right: 0; }
.highlight-item strong { display: block; margin-bottom: 6px; color: var(--title); }
.highlight-item p { margin: 0; font-size: .92rem; }

.pill-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pill-nav a { padding: 10px 16px; border: 1px solid rgba(191,255,255,.15); border-radius: 999px; color: #fff; background: rgba(60,0,100,.44); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.pill-nav a:hover { transform: translateY(-2px); border-color: rgba(37,223,245,.48); background: rgba(37,223,245,.09); }

.split-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.82fr); align-items: center; gap: 62px; }
.split-layout.reverse .split-media { order: -1; }
.split-media { position: relative; }
.split-media img, .content-img, .zone-card img, .app-section img, .hero-visual img, .poster-banner img { max-width: 100%; height: auto; object-fit: contain; }
.split-media img { border-radius: var(--radius-lg); filter: drop-shadow(0 22px 50px rgba(0,0,0,.38)); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--cyan); font-weight: 900; }

.poster-banner { padding: 26px; border: 1px solid rgba(191,255,255,.13); border-radius: 28px; background: linear-gradient(145deg,rgba(74,0,127,.44),rgba(22,0,43,.72)); box-shadow: var(--shadow); }
.poster-banner img { width: min(100%,1040px); margin-inline: auto; border-radius: 20px; }

.channel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.channel-card, .card, .zone-card, .info-card, .review-card, .faq-item, .news-card, .guide-card {
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.channel-card { min-height: 210px; padding: 26px; border-radius: 18px; transition: transform .2s ease,border-color .2s ease; }
.channel-card:hover { transform: translateY(-4px); border-color: rgba(37,223,245,.4); }
.channel-number { display: inline-flex; margin-bottom: 18px; color: var(--cyan); font-weight: 900; letter-spacing: .16em; }
.channel-card p { margin-bottom: 16px; }
.channel-card a { color: var(--title); font-weight: 800; }

.game-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 16px; }
.game-card { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: var(--bg-card); box-shadow: var(--shadow); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.game-card:hover { transform: translateY(-6px); border-color: rgba(37,223,245,.38); box-shadow: 0 20px 48px rgba(37,223,245,.12),0 18px 46px rgba(0,0,0,.34); }
.game-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.game-card-body { padding: 18px; }
.game-card-body h3 { margin-bottom: 8px; }
.game-card-body p { min-height: 78px; font-size: .9rem; }
.game-card-body a { color: var(--cyan); font-weight: 800; }

.info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.info-card { padding: 24px; border-radius: 18px; }
.info-card .icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 14px; background: linear-gradient(135deg,rgba(37,223,245,.18),rgba(240,107,234,.2)); font-size: 1.35rem; }
.info-card p { margin-bottom: 0; }

.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.guide-card { padding: 28px; border-radius: 18px; }
.guide-step { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-bottom: 18px; border-radius: 50%; color: #16002b; background: var(--title); font-weight: 900; }

.activity-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.activity-card { overflow: hidden; border: 1px solid var(--border); border-radius: 22px; background: var(--bg-card); box-shadow: var(--shadow); }
.activity-card img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.activity-copy { padding: 26px; }
.activity-copy p { margin-bottom: 12px; }

.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.news-card { padding: 24px; border-radius: 18px; }
.news-date { color: var(--cyan); font-size: .86rem; font-weight: 800; }

.security-panel { padding: 34px; border: 1px solid rgba(37,223,245,.18); border-radius: 22px; background: linear-gradient(135deg,rgba(37,223,245,.08),rgba(240,107,234,.08)); box-shadow: var(--shadow); }
.security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 24px; }
.security-item { padding: 18px; border-radius: 14px; background: rgba(22,0,43,.52); }
.security-item strong { display: block; color: var(--title); margin-bottom: 6px; }
.security-item p { margin: 0; font-size: .92rem; }

.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { position: relative; padding: 28px; border-radius: 18px; }
.review-mark { position: absolute; top: 4px; right: 18px; color: rgba(191,255,255,.18); font: 700 4.6rem/1 Georgia,serif; }
.review-card p { position: relative; margin-bottom: 14px; }
.review-card span { color: var(--cyan); font-size: .88rem; font-weight: 800; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: 14px; overflow: hidden; }
.faq-item summary { position: relative; padding: 20px 54px 20px 22px; cursor: pointer; color: #fff; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--cyan); font-size: 1.45rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 22px 22px; margin: 0; }

.responsible-band { padding: 34px; border: 1px solid rgba(240,107,234,.2); border-radius: 24px; background: linear-gradient(120deg,rgba(74,0,127,.58),rgba(37,223,245,.06)); box-shadow: var(--shadow); }
.responsible-band h2 { margin-bottom: 12px; }
.responsible-band p { margin-bottom: 0; }

.inner-hero { position: relative; padding: 88px 0 72px; overflow: hidden; background: linear-gradient(180deg,rgba(74,0,127,.52),rgba(36,0,63,.18)); }
.inner-hero::before { content: ""; position: absolute; width: 440px; height: 440px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle,rgba(37,223,245,.18),transparent 68%); }
.inner-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(290px,.75fr); align-items: center; gap: 54px; }
.inner-hero-copy { max-width: 760px; }
.inner-hero-copy h1 { font-size: clamp(2.3rem,5vw,4.2rem); margin-bottom: 18px; }
.inner-hero-visual img { width: 100%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 20px 42px rgba(0,0,0,.35)); }
.inner-hero-orbit { position: relative; min-height: 330px; display: grid; place-items: center; border: 1px solid rgba(191,255,255,.14); border-radius: 50%; background: radial-gradient(circle,rgba(37,223,245,.12),rgba(240,107,234,.06) 42%,transparent 70%); }
.inner-hero-orbit span { position: absolute; font-size: 3rem; filter: drop-shadow(0 0 14px rgba(37,223,245,.28)); }
.inner-hero-orbit span:nth-child(1) { top: 12%; left: 20%; }
.inner-hero-orbit span:nth-child(2) { top: 22%; right: 16%; }
.inner-hero-orbit span:nth-child(3) { bottom: 18%; left: 18%; }
.inner-hero-orbit span:nth-child(4) { bottom: 14%; right: 24%; }

.prose-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 34px; align-items: start; }
.prose-card { padding: 32px; border: 1px solid var(--border); border-radius: 22px; background: rgba(45,0,82,.42); box-shadow: var(--shadow); }
.prose-card p:last-child { margin-bottom: 0; }
.aside-list { display: grid; gap: 14px; }
.aside-item { padding: 20px; border: 1px solid rgba(191,255,255,.12); border-radius: 16px; background: rgba(60,0,100,.44); }
.aside-item strong { display: block; margin-bottom: 6px; color: var(--title); }
.aside-item p { margin: 0; font-size: .92rem; }
.steps-list { counter-reset: step; display: grid; gap: 14px; padding: 0; list-style: none; }
.steps-list li { counter-increment: step; position: relative; padding: 18px 18px 18px 68px; border: 1px solid rgba(191,255,255,.12); border-radius: 15px; color: var(--muted); background: rgba(45,0,82,.38); }
.steps-list li::before { content: counter(step,decimal-leading-zero); position: absolute; left: 18px; top: 18px; color: var(--cyan); font-weight: 900; letter-spacing: .08em; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.related-card { padding: 22px; border: 1px solid rgba(191,255,255,.13); border-radius: 16px; background: rgba(60,0,100,.42); }
.related-card h3 { margin-bottom: 8px; }
.related-card p { margin-bottom: 12px; font-size: .92rem; }
.related-card a { color: var(--cyan); font-weight: 800; }

.site-footer { padding: 72px 0 24px; background: #140024; color: #d8c7ff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3,.75fr); gap: 34px; }
.footer-grid h2 { margin-bottom: 14px; font-size: 1rem; }
.footer-grid a { display: block; width: fit-content; margin: 8px 0; color: var(--muted); }
.footer-grid a:hover { color: var(--cyan); }
.footer-brand img { width: 175px; height: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 410px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(191,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .88rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    .desktop-nav { display: none; }
    .game-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
    .info-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1.3fr repeat(3,.8fr); }
}
@media (max-width: 900px) {
    .section { padding: 74px 0; }
    .hero-grid, .inner-hero-grid, .split-layout, .prose-grid { grid-template-columns: 1fr; }
    .hero-grid { padding-top: 54px; text-align: center; }
    .hero-copy { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual img { max-height: 420px; }
    .highlight-grid { grid-template-columns: repeat(2,1fr); }
    .highlight-item:nth-child(2) { border-right: 0; }
    .highlight-item:nth-child(-n+2) { border-bottom: 1px solid rgba(191,255,255,.10); }
    .channel-grid, .news-grid, .guide-grid, .review-grid, .related-grid { grid-template-columns: repeat(2,1fr); }
    .game-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .activity-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: repeat(2,1fr); }
    .split-layout.reverse .split-media { order: initial; }
    .inner-hero { text-align: center; }
    .inner-hero-copy { margin-inline: auto; }
    .inner-hero .hero-actions { justify-content: center; }
    .inner-hero-visual img { max-height: 360px; }
    .inner-hero-orbit { width: min(100%,430px); margin-inline: auto; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .footer-bottom { flex-direction: column; }
}
@media (max-width: 620px) {
    .container, .narrow-container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 66px; gap: 8px; }
    .brand img { width: 118px; }
    .header-actions { gap: 7px; }
    .header-cta { min-height: 40px; padding: 0 12px; font-size: .82rem; }
    .menu-toggle { width: 40px; height: 40px; }
    .menu-toggle span { width: 19px; }
    .hero-home { min-height: auto; }
    .hero-grid { gap: 26px; padding: 52px 0 88px; }
    h1 { font-size: clamp(2.35rem,13vw,3.5rem); }
    .hero-copy .lead { font-size: 1rem; }
    .hero-actions { gap: 12px; }
    .main-btn { min-height: 44px; padding-inline: 18px; }
    .highlight-strip { margin-top: -26px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-item { border-right: 0; border-bottom: 1px solid rgba(191,255,255,.10); }
    .highlight-item:last-child { border-bottom: 0; }
    .channel-grid, .news-grid, .guide-grid, .review-grid, .related-grid, .info-grid, .security-grid { grid-template-columns: 1fr; }
    .game-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
    .game-card-body { padding: 14px; }
    .game-card-body h3 { font-size: 1rem; }
    .game-card-body p { min-height: 0; font-size: .84rem; }
    .poster-banner { padding: 12px; border-radius: 18px; }
    .poster-banner img { border-radius: 12px; }
    .section { padding: 62px 0; }
    .section-heading { margin-bottom: 26px; }
    .prose-card, .security-panel, .responsible-band { padding: 24px; }
    .inner-hero { padding: 62px 0 54px; }
    .inner-hero-grid { gap: 28px; }
    .inner-hero-orbit { min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr; }
    .emoji-field .emoji:nth-child(n+7) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
