:root {
  --bg: #24003f;
  --bg-deep: #16002b;
  --bg-soft: #2d0052;
  --bg-card: rgba(60, 0, 100, 0.56);
  --bg-card-strong: rgba(45, 0, 82, 0.82);
  --border: rgba(191,255,255,0.14);
  --title: #bfffff;
  --white: #ffffff;
  --text: #ffffff;
  --muted: #d8c7ff;
  --soft: #b99ee8;
  --cyan: #25dff5;
  --pink: #f06bea;
  --grad: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
  --shadow: 0 18px 46px rgba(0,0,0,0.32);
  --max: 1180px;
}

* { box-sizing: border-box; }
html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(circle at top left, rgba(240,107,234,.18), transparent 32vw),
    radial-gradient(circle at 86% 18%, rgba(37,223,245,.13), transparent 34vw),
    linear-gradient(180deg, #24003f 0%, #1d0036 44%, #16002b 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.72;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.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: -1s; animation-duration: 15s; }
.emoji-bg span:nth-child(2) { left: 13%; animation-delay: -7s; animation-duration: 18s; }
.emoji-bg span:nth-child(3) { left: 24%; animation-delay: -4s; animation-duration: 13s; }
.emoji-bg span:nth-child(4) { left: 36%; animation-delay: -8s; animation-duration: 17s; }
.emoji-bg span:nth-child(5) { left: 48%; animation-delay: -3s; animation-duration: 16s; }
.emoji-bg span:nth-child(6) { left: 58%; animation-delay: -9s; animation-duration: 20s; }
.emoji-bg span:nth-child(7) { left: 68%; animation-delay: -5s; animation-duration: 14s; }
.emoji-bg span:nth-child(8) { left: 78%; animation-delay: -2s; animation-duration: 18s; }
.emoji-bg span:nth-child(9) { left: 88%; animation-delay: -6s; animation-duration: 16s; }
.emoji-bg span:nth-child(10) { left: 94%; animation-delay: -10s; animation-duration: 19s; }
.emoji-bg span:nth-child(11) { left: 18%; animation-delay: -12s; animation-duration: 21s; }
.emoji-bg span:nth-child(12) { left: 72%; animation-delay: -13s; animation-duration: 22s; }
@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);
  border-bottom: 1px solid rgba(191,255,255,.10);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
}
.brand img,
.drawer-logo img,
.footer-brand img {
  display: block;
  width: 158px;
  height: auto;
  object-fit: contain;
}
.header-mini-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.header-mini-nav a {
  color: #ffffff;
  font-size: 14px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: .22s ease;
}
.header-mini-nav a:hover,
.header-mini-nav a.active {
  color: var(--cyan);
  border-color: rgba(37,223,245,.28);
  background: rgba(37,223,245,.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: linear-gradient(90deg, #21dff5 0%, #8f7bff 52%, #f06bea 100%);
  color: #ffffff;
  border-radius: 6px;
  border: 0;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 14px 30px rgba(240,107,234,0.26);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.main-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37,223,245,0.30);
  filter: saturate(1.1);
}
.main-btn.compact { min-height: 40px; padding: 0 17px; font-size: 14px; }
.ghost-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(191,255,255,.24);
  color: var(--title);
  background: rgba(191,255,255,.06);
  transition: .22s ease;
}
.ghost-btn:hover { color: #fff; border-color: var(--cyan); background: rgba(37,223,245,.11); }
.menu-toggle {
  width: 44px;
  height: 40px;
  border: 1px solid rgba(191,255,255,.2);
  border-radius: 8px;
  background: rgba(22,0,43,.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(37,223,245,.36);
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,0,18,.62);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: .24s ease;
}
.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  height: 100vh;
  z-index: 10001;
  transform: translateX(104%);
  transition: transform .28s ease;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(36,0,63,.92), rgba(22,0,43,.96)),
    radial-gradient(circle at 80% 18%, rgba(240,107,234,.25), transparent 32%);
  border-left: 1px solid rgba(191,255,255,.14);
  box-shadow: -24px 0 60px rgba(0,0,0,.42);
  overflow-y: auto;
}
.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-open .side-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(191,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.drawer-nav { display: grid; gap: 10px; }
.drawer-nav a {
  color: #ffffff;
  padding: 13px 15px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(191,255,255,.08);
  transition: .2s ease;
}
.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--cyan);
  border-color: rgba(37,223,245,.32);
  background: rgba(37,223,245,.10);
}
.drawer-note { margin-top: 28px; padding: 18px; border-radius: 14px; background: rgba(22,0,43,.56); border: 1px solid rgba(240,107,234,.18); }
.drawer-note p { color: var(--muted); margin: 0 0 15px; font-size: 14px; }
main { position: relative; z-index: 1; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 82px 0; position: relative; }
.section.narrow { padding: 58px 0; }
.section-head { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1,
h2,
h3,
.section-title {
  color: #bfffff;
  text-shadow: 0 0 18px rgba(37,223,245,0.20);
  line-height: 1.18;
}
h1 { font-size: clamp(42px, 7vw, 82px); margin: 12px 0 18px; }
h2 { font-size: clamp(30px, 4.2vw, 48px); margin: 10px 0 15px; }
h3 { font-size: 20px; margin: 0 0 12px; }
p { color: var(--muted); margin: 0 0 16px; }
.text-link {
  color: var(--cyan);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link:hover { color: #fff; text-shadow: 0 0 12px rgba(37,223,245,.45); }

.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;
  display: flex;
  align-items: center;
}
.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;
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 24px 132px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--title);
  background: rgba(36,0,63,.48);
  border: 1px solid rgba(191,255,255,.18);
  box-shadow: inset 0 0 26px rgba(37,223,245,.08);
  backdrop-filter: blur(10px);
}
.hero-subtitle { color: #ffffff; font-size: clamp(18px, 2.8vw, 25px); margin-bottom: 16px; }
.hero-copy { max-width: 760px; margin: 0 auto 28px; color: #f2eaff; font-size: 17px; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-glow-card {
  margin: 36px auto 0;
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(191,255,255,.16);
  background: rgba(191,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.34), 0 0 30px rgba(240,107,234,.16);
}
.hero-glow-card span {
  padding: 13px 8px;
  background: rgba(36,0,63,.62);
  color: var(--title);
  font-weight: 700;
  font-size: 14px;
}

.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 { text-align: center; padding: 28px 18px 24px; position: relative; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.22); }
.stat-number { display: block; color: #fff; font-size: clamp(28px, 4vw, 44px); line-height: 1; font-weight: 900; }
.stat-label { display: block; color: #bfffff; margin-top: 10px; font-weight: 800; }

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(191,255,255,.12);
  border: 1px solid rgba(191,255,255,.12);
  box-shadow: var(--shadow);
}
.service-ribbon div { padding: 22px; background: rgba(45,0,82,.74); }
.service-ribbon strong { display: block; color: var(--title); margin-bottom: 7px; }
.service-ribbon span { color: var(--soft); font-size: 14px; }

.category-grid,
.info-grid,
.feature-grid,
.activity-grid,
.equal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.category-card,
.card,
.zone-card,
.info-card,
.game-card,
.activity-card,
.faq-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);
  border-radius: 18px;
}
.category-card {
  min-height: 172px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: .22s ease;
}
.category-card:hover,
.card:hover,
.info-card:hover,
.activity-card:hover,
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(0,0,0,.38), 0 0 34px rgba(37,223,245,.16);
  border-color: rgba(37,223,245,.28);
}
.category-no { color: var(--cyan); font-weight: 900; margin-bottom: 10px; }
.category-card h3 { min-height: 30px; }
.category-card p { min-height: 56px; margin-bottom: 0; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 34px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.glass-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(60,0,100,.74), rgba(22,0,43,.64)),
    radial-gradient(circle at 12% 10%, rgba(37,223,245,.14), transparent 26%);
  border: 1px solid rgba(191,255,255,.14);
  box-shadow: var(--shadow);
}
.check-list { list-style: none; margin: 22px 0 24px; padding: 0; display: grid; gap: 11px; }
.check-list li { color: var(--muted); position: relative; padding-left: 26px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 10px; height: 10px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px rgba(37,223,245,.42); }
.image-panel {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(45,0,82,.76), rgba(74,0,127,.42));
  border: 1px solid rgba(191,255,255,.13);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.content-img,
.zone-card img,
.app-section img,
.hero-visual img,
.poster-banner img,
.image-panel img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.image-panel img { max-height: 330px; }

.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 {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.game-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  transition: .22s ease;
}
.game-card .game-img-wrap {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(22,0,43,.34);
  border: 1px solid rgba(191,255,255,.08);
}
.game-card img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.game-card h3 { min-height: 52px; margin-bottom: 10px; }
.game-card p { min-height: 78px; margin-bottom: 16px; }
.game-card .text-link { margin-top: auto; }

.activity-card {
  min-height: 410px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: .22s ease;
}
.activity-card .img-wrap,
.info-card .img-wrap,
.zone-card .img-wrap {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(22,0,43,.34);
  border: 1px solid rgba(191,255,255,.08);
  margin-bottom: 18px;
}
.activity-card img,
.info-card img,
.zone-card img { max-height: 150px; width: auto; height: auto; object-fit: contain; }
.activity-card p { min-height: 96px; }
.activity-card .text-link { margin-top: auto; }
.info-card, .card, .zone-card, .faq-card { padding: 22px; display: flex; flex-direction: column; }
.info-card { min-height: 260px; }
.info-card h3 { min-height: 52px; }
.info-card p { min-height: 90px; }
.info-card .text-link { margin-top: auto; }
.card { min-height: 210px; }
.card .text-link { margin-top: auto; }

.page-hero {
  position: relative;
  padding: 100px 0 76px;
  background:
    radial-gradient(circle at 72% 20%, rgba(240,107,234,.22), transparent 34%),
    linear-gradient(145deg, rgba(45,0,82,.92), rgba(22,0,43,.92));
  border-bottom: 1px solid rgba(191,255,255,.10);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(36,0,63,0), rgba(36,0,63,.9));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { max-width: 830px; font-size: 18px; color: #f3eaff; }
.breadcrumb { color: var(--cyan); font-weight: 800; margin-bottom: 8px; }
.content-block { max-width: 900px; margin: 0 auto; }
.content-block p { font-size: 16px; }
.lead { font-size: 18px; color: #fff; }
.callout {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,223,245,.12), rgba(240,107,234,.13));
  border: 1px solid rgba(191,255,255,.16);
  color: var(--muted);
}
.faq-list { display: grid; gap: 18px; max-width: 980px; margin: 0 auto; }
.faq-card { min-height: 170px; }
.faq-card h3 { color: #fff; }
.contact-list { display: grid; gap: 14px; margin-top: 20px; }
.contact-list a, .contact-list span { padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(191,255,255,.10); color: var(--muted); }

.site-footer {
  position: relative;
  z-index: 2;
  background: #140024;
  color: #d8c7ff;
  border-top: 1px solid rgba(191,255,255,.10);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 34px;
}
.footer-brand p,
.footer-reminder p { margin-top: 14px; color: #d8c7ff; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-content: start; }
.footer-links a { color: #ffffff; padding: 8px 0; }
.footer-links a:hover { color: var(--cyan); }
.footer-reminder { padding: 20px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(191,255,255,.10); }
.footer-reminder strong { color: var(--title); }
.copyright { text-align: center; padding: 18px 24px 28px; color: var(--soft); border-top: 1px solid rgba(191,255,255,.08); }

@media (max-width: 1024px) {
  .header-mini-nav { display: none; }
  .category-grid,
  .info-grid,
  .feature-grid,
  .activity-grid,
  .equal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split-section,
  .split-section.reverse { grid-template-columns: 1fr; }
  .service-ribbon { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .header-inner { padding: 0 14px; min-height: 64px; }
  .brand img,
  .drawer-logo img,
  .footer-brand img { width: 132px; }
  .main-btn.compact { min-height: 36px; padding: 0 12px; font-size: 13px; }
  .hero-inner { padding-top: 72px; padding-bottom: 110px; }
  .hero-glow-card { grid-template-columns: 1fr; max-width: 320px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin: -36px 16px 58px; }
  .stat-item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.22); }
  .container { padding: 0 16px; }
  .section { padding: 58px 0; }
  .category-grid,
  .info-grid,
  .feature-grid,
  .activity-grid,
  .equal-grid { grid-template-columns: 1fr; }
  .service-ribbon { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .game-card { min-height: 360px; padding: 13px; }
  .game-card .game-img-wrap { height: 130px; margin-bottom: 13px; }
  .game-card img { max-height: 120px; }
  .game-card h3 { min-height: 48px; font-size: 17px; }
  .game-card p { min-height: 92px; font-size: 13px; }
  .activity-card .img-wrap,
  .info-card .img-wrap,
  .zone-card .img-wrap { height: 138px; }
  .image-panel { min-height: 240px; }
  .page-hero { padding: 76px 0 58px; }
  .emoji-bg span { font-size: 20px; opacity: .08; }
  .emoji-bg span:nth-child(n+7) { display: none; }
}
