* {
  box-sizing: border-box;
}

:root {
  --page-bg: #24003f;
  --dark-bg: #16002b;
  --bg-1: #2d0052;
  --bg-2: #3b006b;
  --bg-3: #4a007f;
  --title: #bfffff;
  --cyan: #25dff5;
  --pink: #f06bea;
  --text: #ffffff;
  --muted: #d8c7ff;
  --soft: #b99ee8;
  --card: rgba(60, 0, 100, 0.56);
  --border: rgba(191, 255, 255, 0.14);
  --gradient: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 10% 12%, rgba(240, 107, 234, 0.16), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(37, 223, 245, 0.16), transparent 28%),
    linear-gradient(180deg, #24003f 0%, #19002f 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.75;
}

body.drawer-open {
  overflow: hidden;
}

a {
  color: var(--title);
  text-decoration: none;
  transition: color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

a:hover {
  color: var(--cyan);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.emoji-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.emoji-bg span {
  position: absolute;
  font-size: 28px;
  opacity: .12;
  animation: floatEmoji 12s linear infinite;
  filter: drop-shadow(0 0 10px rgba(37, 223, 245, .25));
}

.emoji-bg span:nth-child(1) { left: 4%; animation-delay: 0s; animation-duration: 14s; }
.emoji-bg span:nth-child(2) { left: 14%; animation-delay: -5s; animation-duration: 18s; }
.emoji-bg span:nth-child(3) { left: 25%; animation-delay: -2s; animation-duration: 15s; }
.emoji-bg span:nth-child(4) { left: 38%; animation-delay: -7s; animation-duration: 19s; }
.emoji-bg span:nth-child(5) { left: 50%; animation-delay: -3s; animation-duration: 16s; }
.emoji-bg span:nth-child(6) { left: 61%; animation-delay: -9s; animation-duration: 20s; }
.emoji-bg span:nth-child(7) { left: 72%; animation-delay: -4s; animation-duration: 15s; }
.emoji-bg span:nth-child(8) { left: 82%; animation-delay: -8s; animation-duration: 21s; }
.emoji-bg span:nth-child(9) { left: 92%; animation-delay: -1s; animation-duration: 17s; }
.emoji-bg span:nth-child(10) { left: 8%; animation-delay: -10s; animation-duration: 22s; }
.emoji-bg span:nth-child(11) { left: 67%; animation-delay: -12s; animation-duration: 18s; }
.emoji-bg span:nth-child(12) { left: 96%; animation-delay: -6s; animation-duration: 19s; }

@keyframes floatEmoji {
  0% {
    transform: translate3d(0, 110vh, 0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: .16;
  }
  50% {
    transform: translate3d(22px, 45vh, 0) rotate(12deg);
  }
  100% {
    transform: translate3d(-18px, -12vh, 0) rotate(28deg);
    opacity: 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(36, 0, 63, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-logo,
.drawer-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  border: 0;
  color: #ffffff;
  background: var(--gradient);
  box-shadow: 0 14px 30px rgba(240, 107, 234, 0.26);
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.main-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 223, 245, 0.30);
}

.main-btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(191, 255, 255, 0.24);
  box-shadow: none;
}

.menu-toggle {
  width: 48px;
  height: 44px;
  border: 1px solid rgba(191, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(37, 223, 245, .45);
}

.drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(10, 0, 24, .62);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: opacity .28s ease, visibility .28s ease;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  height: 100vh;
  z-index: 10001;
  background:
    radial-gradient(circle at 86% 10%, rgba(37, 223, 245, .2), transparent 34%),
    radial-gradient(circle at 10% 88%, rgba(240, 107, 234, .2), transparent 36%),
    linear-gradient(180deg, #3b006b 0%, #16002b 100%);
  border-left: 1px solid rgba(191, 255, 255, .18);
  box-shadow: -24px 0 80px rgba(0, 0, 0, .42);
  transform: translateX(104%);
  transition: transform .32s ease;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

body.drawer-open .drawer-mask {
  opacity: 1;
  visibility: visible;
}

body.drawer-open .side-drawer {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(191, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 10px;
}

.drawer-link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(191, 255, 255, .1);
  font-weight: 700;
}

.drawer-link:hover,
.drawer-link.is-active {
  color: #ffffff;
  border-color: rgba(37, 223, 245, .55);
  background: linear-gradient(90deg, rgba(37, 223, 245, .18), rgba(240, 107, 234, .16));
  box-shadow: 0 12px 26px rgba(37, 223, 245, .13);
}

.drawer-card {
  margin-top: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(22, 0, 43, .78);
  border: 1px solid rgba(191, 255, 255, .15);
}

.drawer-card strong {
  color: var(--title);
  display: block;
  margin-bottom: 8px;
}

.drawer-card p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 14px;
}

.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(35,0,63,0.55) 0%, rgba(35,0,63,0.78) 58%, rgba(141,0,255,0.92) 100%),
    url("背景.webp") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 52%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,223,245,.22), transparent 66%);
  filter: blur(4px);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 230px;
  background: linear-gradient(180deg, rgba(141,0,255,0) 0%, rgba(157,0,255,0.95) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  gap: 54px;
  padding: 92px 0 130px;
}

.hero-kicker,
.section-kicker,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(37, 223, 245, .1);
  border: 1px solid rgba(37, 223, 245, .28);
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 13px;
}

.hero-content h1,
.sub-hero h1,
h1,
h2,
h3,
.section-title {
  color: var(--title);
  text-shadow: 0 0 18px rgba(37, 223, 245, 0.20);
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 98px);
  line-height: 1.02;
  margin: 18px 0 12px;
  letter-spacing: .04em;
}

.hero-subtitle {
  color: #ffffff;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  margin: 0 0 18px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 28px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-note {
  color: var(--soft);
  font-size: 14px;
  margin-top: 18px;
}

.hero-visual {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  border: 1px solid rgba(191, 255, 255, .16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .38), 0 0 70px rgba(240, 107, 234, .22);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(37, 223, 245, .22);
  pointer-events: none;
}

.hero-visual img,
.content-img,
.zone-card img,
.app-section img,
.poster-banner img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.38));
}

.stats-strip {
  max-width: 1080px;
  margin: -46px auto 90px;
  border-radius: 12px;
  background: linear-gradient(100deg, #f06bea 0%, #9b67f0 48%, #6d67ff 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 38px rgba(0,0,0,0.28);
  border-bottom: 4px solid #25f5e7;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat-item {
  padding: 24px 18px 20px;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(255, 255, 255, .26);
}

.stat-number {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: #ffffff;
  font-weight: 900;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--title);
  font-weight: 800;
}

.section {
  padding: 72px 0;
  position: relative;
}

.section.compact {
  padding: 48px 0;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  margin: 12px 0 14px;
}

.section-desc {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card,
.card,
.zone-card,
.info-card,
.faq-item,
.notice-box,
.service-bar,
.split-panel,
.app-panel,
.page-panel,
.contact-card,
.step-card {
  background: rgba(60, 0, 100, 0.56);
  border: 1px solid rgba(191,255,255,0.14);
  box-shadow: 0 18px 46px rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
}

.category-card {
  min-height: 132px;
  padding: 18px;
  border-radius: 18px;
}

.category-card:hover,
.game-card:hover,
.info-card:hover,
.zone-card:hover,
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 223, 245, .42);
  box-shadow: 0 22px 56px rgba(37, 223, 245, .16), 0 18px 46px rgba(0,0,0,0.32);
}

.category-number {
  color: var(--cyan);
  font-weight: 900;
  font-size: 14px;
}

.category-card h3 {
  margin: 8px 0 6px;
  font-size: 20px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-bar {
  margin-top: 22px;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: linear-gradient(100deg, rgba(37, 223, 245, .12), rgba(240, 107, 234, .12));
}

.service-bar strong {
  display: block;
  color: var(--title);
  font-size: 18px;
}

.service-bar span {
  color: var(--muted);
  font-size: 14px;
}

.split-panel {
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
  gap: 36px;
  align-items: center;
  overflow: hidden;
}

.split-panel.reverse {
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1fr);
}

.panel-copy h2,
.page-panel h2,
.app-panel h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  margin: 8px 0 14px;
}

.panel-copy p,
.page-panel p,
.app-panel p,
.card p,
.zone-card p,
.info-card p,
.faq-item p,
.step-card p,
.contact-card p {
  color: var(--muted);
}

.check-list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

.check-list li,
.clean-list li {
  color: #ffffff;
  padding-left: 28px;
  position: relative;
}

.check-list li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(37, 223, 245, .55);
}

.panel-visual,
.app-visual,
.page-visual {
  border-radius: 24px;
  background: rgba(22, 0, 43, .58);
  border: 1px solid rgba(191, 255, 255, .13);
  padding: 18px;
  box-shadow: inset 0 0 50px rgba(37, 223, 245, .06);
}

.panel-visual img,
.app-visual img,
.page-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.poster-banner {
  max-width: 1040px;
  margin: 70px auto 36px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
  border: 1px solid rgba(191, 255, 255, .14);
}

.poster-banner img {
  width: 100%;
  display: block;
  height: auto;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.game-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(60, 0, 100, 0.56);
  border: 1px solid rgba(191,255,255,0.12);
  box-shadow: 0 18px 46px rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: rgba(22, 0, 43, .42);
}

.game-card-body {
  padding: 16px;
}

.game-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.game-card p {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 14px;
}

.text-link {
  color: var(--cyan);
  font-weight: 800;
}

.feature-grid,
.info-grid,
.zone-grid,
.help-grid,
.step-grid,
.news-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-grid.two,
.info-grid.two,
.zone-grid.two,
.contact-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.zone-card,
.info-card,
.step-card,
.contact-card {
  border-radius: 22px;
  padding: 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.zone-card img,
.info-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 16px;
  background: rgba(22, 0, 43, .38);
}

.zone-card h3,
.info-card h3,
.step-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.app-panel,
.page-panel {
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 18%, rgba(37, 223, 245, .15), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(240, 107, 234, .18), transparent 34%),
    rgba(60, 0, 100, 0.56);
}

.app-panel.reverse,
.page-panel.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
}

.notice-box {
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(37,223,245,.11), rgba(240,107,234,.1)), rgba(22, 0, 43, .72);
}

.notice-box h2,
.notice-box h3 {
  margin-top: 0;
}

.notice-box p {
  color: var(--muted);
  margin-bottom: 0;
}

.sub-hero {
  padding: 90px 0 64px;
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 107, 234, .18), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(37, 223, 245, .15), transparent 30%),
    linear-gradient(180deg, #2d0052 0%, #24003f 100%);
  border-bottom: 1px solid rgba(191, 255, 255, .12);
}

.sub-hero h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  font-size: clamp(38px, 5.5vw, 70px);
  line-height: 1.12;
}

.sub-hero p {
  max-width: 820px;
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 17px;
}

.breadcrumb {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .04em;
}

.page-panel.single {
  display: block;
}

.copy-block {
  max-width: 980px;
  margin: 0 auto;
}

.copy-block p {
  color: var(--muted);
  margin: 0 0 18px;
}

.copy-block h2 {
  margin-top: 38px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  padding: 20px 22px;
}

.faq-item h2,
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.faq-item p {
  margin: 0;
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  border-left: 3px solid var(--cyan);
  padding: 2px 0 2px 20px;
}

.timeline-item h3 {
  margin: 0 0 6px;
}

.timeline-item p {
  color: var(--muted);
  margin: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #140024;
  color: #d8c7ff;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(191, 255, 255, .12);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.4fr;
  gap: 42px;
}

.footer-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: var(--muted);
  margin: 18px 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  color: #d8c7ff;
  margin: 8px 0;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(191, 255, 255, .1);
  color: var(--soft);
  font-size: 14px;
}

.footer-bottom p {
  margin: 6px 0;
}

@media (max-width: 1080px) {
  .hero-inner,
  .split-panel,
  .split-panel.reverse,
  .app-panel,
  .app-panel.reverse,
  .page-panel,
  .page-panel.reverse {
    grid-template-columns: 1fr;
  }
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-grid,
  .feature-grid,
  .info-grid,
  .zone-grid,
  .help-grid,
  .step-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }
  .header-inner {
    min-height: 64px;
    padding: 0 14px;
  }
  .site-logo img {
    height: 42px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .menu-toggle {
    width: 42px;
    height: 38px;
    border-radius: 9px;
  }
  .hero-inner {
    padding: 64px 0 96px;
    gap: 28px;
  }
  .hero-content h1 {
    font-size: clamp(44px, 14vw, 66px);
  }
  .hero-visual {
    padding: 14px;
    border-radius: 22px;
  }
  .stats-strip {
    width: min(100% - 28px, 1080px);
    grid-template-columns: repeat(2, 1fr);
    margin-top: -34px;
    margin-bottom: 54px;
  }
  .stat-item + .stat-item::before {
    display: none;
  }
  .section {
    padding: 52px 0;
  }
  .category-grid,
  .feature-grid,
  .feature-grid.two,
  .info-grid,
  .info-grid.two,
  .zone-grid,
  .zone-grid.two,
  .help-grid,
  .step-grid,
  .news-grid,
  .contact-grid,
  .contact-grid.two,
  .service-bar {
    grid-template-columns: 1fr;
  }
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .game-card-body {
    padding: 12px;
  }
  .game-card h3 {
    font-size: 16px;
  }
  .split-panel,
  .app-panel,
  .page-panel {
    padding: 22px;
    border-radius: 22px;
  }
  .poster-banner {
    margin: 44px auto 24px;
  }
  .sub-hero {
    padding: 64px 0 48px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .emoji-bg span {
    font-size: 22px;
  }
  .emoji-bg span:nth-child(n+7) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .emoji-bg span {
    animation: none;
  }
}
