/* ============================================================
   DMWFZB - 门户页专属样式 (index.html)
   ============================================================ */

/* 噪点纹理背景 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .018;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Loading ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity .25s, visibility .25s;
}

.loader.hide { opacity: 0; visibility: hidden }

.loader-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid rgba(71, 118, 230, 0.1);
  border-top-color: var(--p);
  border-right-color: var(--s);
  animation: spin .7s linear infinite;
}

/* ===== Scroll Progress ===== */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g);
  z-index: 99990;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ===== 动态背景 ===== */
.bg-mesh { position: fixed; inset: 0; z-index: -1; overflow: hidden }

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .5;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb:nth-child(1) { width: 600px; height: 600px; background: rgba(71, 118, 230, 0.07); top: -10%; left: -5%; animation-delay: 0s }
.bg-orb:nth-child(2) { width: 500px; height: 500px; background: rgba(142, 84, 233, 0.06); bottom: -10%; right: -5%; animation-delay: -7s }
.bg-orb:nth-child(3) { width: 400px; height: 400px; background: rgba(71, 118, 230, 0.04); top: 40%; left: 50%; animation-delay: -14s }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1) }
  25%  { transform: translate(30px, -40px) scale(1.05) }
  50%  { transform: translate(-20px, 30px) scale(.95) }
  75%  { transform: translate(40px, 20px) scale(1.02) }
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(71, 118, 230, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71, 118, 230, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ===== 导航栏 ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9990;
  padding: 16px 0;
  transition: all .4s var(--ease);
}

nav.scrolled {
  padding: 8px 0;
  background: rgba(8, 12, 26, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bdr);
}

.nav-w {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.n-logo { display: flex; align-items: center; gap: 12px; text-decoration: none }

.n-logo-i {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  transition: .4s var(--bounce);
}

.n-logo-i img { width: 100%; height: 100%; display: block; object-fit: contain }
.n-logo:hover .n-logo-i { transform: rotate(-8deg) scale(1.08) }

.n-logo-t {
  font-weight: 800;
  font-size: 1.15rem;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.n-links { display: flex; align-items: center; gap: 0; list-style: none }
.n-links li { flex-shrink: 0 }

.n-links a {
  color: var(--t3);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 500;
  transition: color .2s, background .2s;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.n-links a:not(.n-admin-btn):not(.n-cta):hover { color: var(--t); background: rgba(255, 255, 255, 0.04) }

.n-sep { width: 1px; height: 20px; background: var(--bdr); margin: 0 10px; flex-shrink: 0; align-self: center }

.n-admin-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--t3) !important;
  font-size: .82rem;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--bdr) !important;
  transition: color .2s, background .2s, border-color .2s, transform .2s !important;
}

.n-admin-btn:hover {
  color: var(--p-l) !important;
  background: rgba(71, 118, 230, 0.08) !important;
  border-color: var(--bdr-h) !important;
  transform: translateY(-1px);
}

.n-admin-btn i { font-size: 1rem; line-height: 1 }

.n-cta {
  background: var(--g) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 9px 24px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(71, 118, 230, 0.3);
  margin-left: 12px;
  transition: box-shadow .25s, transform .2s !important;
}

.n-cta:hover { box-shadow: 0 6px 28px rgba(71, 118, 230, 0.5); transform: translateY(-1px) }

.hamburger {
  display: none;
  background: 0;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: .2s;
}

.hamburger:hover { background: rgba(255, 255, 255, 0.06) }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 2.5rem 100px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
  overflow: visible;
}

.float-cube {
  position: absolute;
  border-radius: 8px;
  z-index: 0;
  cursor: default;
  transition: filter .4s, box-shadow .4s;
}
.float-cube:hover {
  filter: brightness(1.35);
  box-shadow: 0 0 28px rgba(71,118,230,.4), 0 0 56px rgba(142,84,233,.15);
}
.hero-l, .hero-r { position: relative; z-index: 1 }

.fc1 {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #4776E6, #8e54e9);
  top: 12%; left: 3%;
  animation: fcBob1 6s ease-in-out infinite;
  opacity: .35;
}
.fc2 {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #60a5fa, #4776E6);
  bottom: 22%; left: 8%;
  animation: fcBob2 7s ease-in-out infinite;
  opacity: .25;
}
.fc3 {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  top: 18%; right: 4%;
  animation: fcBob1 8s ease-in-out infinite;
  animation-delay: -2s;
  opacity: .3;
}
.fc4 {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #4776E6, #60a5fa);
  bottom: 15%; right: 12%;
  animation: fcBob2 5.5s ease-in-out infinite;
  animation-delay: -1s;
  opacity: .2;
}
.fc5 {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #8e54e9, #4776E6);
  top: 55%; left: -2%;
  animation: fcBob1 7.5s ease-in-out infinite;
  animation-delay: -3s;
  opacity: .2;
}
.fc6 {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  top: 8%; left: 45%;
  animation: fcBob2 6.5s ease-in-out infinite;
  animation-delay: -4s;
  opacity: .18;
}

@keyframes fcBob1 {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-18px) }
}
@keyframes fcBob2 {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(14px) }
}

.hero-l { flex: 1.15 }
.hero-r { flex: 0.85 }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(71, 118, 230, 0.06);
  border: 1px solid rgba(71, 118, 230, 0.12);
  color: var(--p-l);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
  animation: fadeUp .8s var(--ease) both;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p);
  box-shadow: 0 0 10px rgba(71, 118, 230, 0.6);
  animation: liveDot 2s ease infinite;
}

@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1) }
  50% { opacity: .3; transform: scale(.7) }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 1.8rem;
  animation: fadeUp .8s .15s var(--ease) both;
}

.hero h1 em {
  font-style: normal;
  background-size: 200% 200%;
  background-image: linear-gradient(135deg, #4776E6 0%, #8E54E9 50%, #4776E6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
}

.hero-p {
  font-size: 1.08rem;
  color: var(--t2);
  line-height: 1.85;
  margin-bottom: 2.8rem;
  max-width: 480px;
  animation: fadeUp .8s .3s var(--ease) both;
}

.hero-acts { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .45s var(--ease) both }

/* ===== Bento Grid ===== */
.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; animation: fadeUp .8s .5s var(--ease) both }

.b {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 1.3rem 1.4rem;
  backdrop-filter: blur(20px);
  transition: .45s var(--ease);
  position: relative;
  overflow: hidden;
}

.b::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--g);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .45s var(--ease);
}

.b:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3) }
.b:hover::after { opacity: 1 }
.b > * { position: relative; z-index: 1 }
.b.w { grid-column: 1 / -1 }

.b-n {
  font-size: 2rem;
  font-weight: 900;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.b-l { font-size: .74rem; color: var(--t3); margin-top: 5px; font-weight: 500; letter-spacing: .5px }
.b-bar { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.04); margin-top: 12px; overflow: hidden }
.b-bar i { display: block; height: 100%; border-radius: 4px; background: var(--g); width: 0; transition: width 1.8s var(--ease) }
.b-row { display: flex; align-items: center; gap: 10px; padding: 6px 0 }
.b-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0 }
.b-dot.ok   { background: #34d399; box-shadow: 0 0 8px rgba(52, 211, 153, 0.5) }
.b-dot.fail { background: #f87171; box-shadow: 0 0 8px rgba(248, 113, 113, 0.5) }
.b-dot.warn { background: #fbbf24; box-shadow: 0 0 8px rgba(251, 191, 36, 0.5) }
.b-txt { flex: 1; font-size: .8rem; color: var(--t2) }
.b-tag { font-size: .67rem; padding: 3px 10px; border-radius: 6px; font-weight: 700; letter-spacing: .8px }
.b-tag.ok   { background: rgba(52, 211, 153, 0.08); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.15) }
.b-tag.fail { background: rgba(248, 113, 113, 0.08); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.15) }
.b-tag.warn { background: rgba(251, 191, 36, 0.08); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.15) }

.scan-h {
  font-size: .7rem;
  color: var(--t3);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}

.scan-h::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
  animation: liveDot 1.5s infinite;
}

/* ===== Marquee ===== */
.marquee {
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(12, 16, 36, 0.4);
}

.marquee-t { display: inline-flex; animation: mq 40s linear infinite }
.marquee:hover .marquee-t { animation-play-state: paused }
@keyframes mq { to { transform: translateX(-50%) } }

.mi { display: inline-flex; align-items: center; gap: 12px; margin: 0 2.5rem; font-size: .88rem; font-weight: 600; color: var(--t3); transition: .2s }
.mi .md { width: 5px; height: 5px; border-radius: 50%; background: var(--g); flex-shrink: 0 }

/* ===== Section 通用 ===== */
section { padding: 120px 2.5rem; position: relative }
.wrap { max-width: 1240px; margin: 0 auto }
.bg2 { background: var(--bg2) }
section + section { border-top: 1px solid rgba(255, 255, 255, 0.02) }
.reveal { opacity: 0; transform: translateY(32px); transition: .7s var(--ease) }
.reveal.visible { opacity: 1; transform: none }

.s-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4.5rem; gap: 2rem; flex-wrap: wrap }
.s-top.ctr { justify-content: center; text-align: center; flex-direction: column; align-items: center }
.s-tag { font-size: .7rem; font-weight: 700; color: var(--p-l); letter-spacing: 5px; text-transform: uppercase; margin-bottom: 1rem }
.s-title { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1.08; letter-spacing: -.025em }
.s-title em { font-style: normal; background: var(--g); -webkit-background-clip: text; -webkit-text-fill-color: transparent }
.s-desc { color: var(--t3); font-size: .95rem; max-width: 380px; line-height: 1.8 }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 5rem; align-items: start }
.about-text { font-size: .98rem; color: var(--t2); line-height: 1.95; margin-bottom: 1.3rem }

.about-quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--t);
  padding: 1.3rem 0 1.3rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.65;
  border-left: 3px solid;
  border-image: var(--g) 1;
}

.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem }

.chip {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(71, 118, 230, 0.05);
  border: 1px solid var(--bdr);
  color: var(--p-l);
  transition: .35s var(--ease);
  cursor: default;
}

.chip:hover { background: rgba(71, 118, 230, 0.1); border-color: var(--bdr-h); transform: translateY(-2px) }

.a-card { padding: 1.6rem; margin-bottom: 10px }
.a-card:hover { transform: translateX(6px) translateY(0) }
.a-card:hover::after { opacity: 0 }

.a-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--g);
  border-radius: 3px;
  opacity: 0;
  transition: .35s var(--ease);
}

.a-card:hover::before { opacity: 1 }
.a-head { display: flex; align-items: center; gap: 14px; margin-bottom: .6rem }

.a-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--g);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(71, 118, 230, 0.2);
  transition: .35s var(--bounce);
}

.a-ico i { font-size: 1.2rem; color: #fff; line-height: 1 }
.a-card:hover .a-ico { transform: scale(1.1) rotate(-5deg) }
.a-card h4 { font-size: 1rem; font-weight: 700 }
.a-card p { font-size: .86rem; color: var(--t3); line-height: 1.65 }

/* ===== Services ===== */
.svc-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px }
.svc { padding: 2.4rem 2rem }
.svc:hover::after { opacity: 1 }

.svc-i {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.06));
  display: grid;
  place-items: center;
  transition: .4s var(--bounce);
}

.svc-i i { font-size: 1.5rem; color: var(--p-l); line-height: 1 }

.svc:hover .svc-i {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 6px 20px rgba(71, 118, 230, 0.15);
  background: linear-gradient(135deg, rgba(71, 118, 230, 0.16), rgba(142, 84, 233, 0.1));
}

.svc h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem }
.svc p { font-size: .87rem; color: var(--t3); line-height: 1.75 }

/* ===== Process ===== */
.proc-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; position: relative }
.proc-line { position: absolute; top: 52px; left: 14%; right: 14%; height: 1px; background: var(--g); opacity: .12 }
.proc { padding: 2.2rem 1.6rem; text-align: center }
.proc:hover::after { opacity: 0 }

.proc-n {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: rgba(71, 118, 230, 0.05);
  border: 1.5px solid var(--bdr);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
  background-image: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: .4s var(--ease);
  position: relative;
}

.proc:hover .proc-n { border-color: var(--bdr-h); box-shadow: 0 0 40px rgba(71, 118, 230, 0.08); transform: scale(1.08) }
.proc h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .4rem }
.proc p { font-size: .82rem; color: var(--t3); line-height: 1.65 }

/* ===== Detect ===== */
.det-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px }
.det { padding: 1.8rem 1.5rem }
.det:hover::after { opacity: 1 }

.det-i {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(71, 118, 230, 0.08), rgba(142, 84, 233, 0.05));
  display: grid;
  place-items: center;
  transition: .35s var(--bounce);
}

.det-i i { font-size: 1.35rem; color: var(--p-l); line-height: 1 }
.det:hover .det-i { transform: scale(1.12); background: linear-gradient(135deg, rgba(71, 118, 230, 0.14), rgba(142, 84, 233, 0.08)) }
.det h4 { font-size: .94rem; font-weight: 700; margin-bottom: .35rem }
.det p { font-size: .8rem; color: var(--t3); line-height: 1.65 }

/* ===== Anti Proxy Testing ===== */
.ap-intro { margin-bottom: 3.5rem }

.ap-warn-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 2.2rem;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.04), rgba(251, 191, 36, 0.02));
  border: 1px solid rgba(248, 113, 113, 0.12);
  backdrop-filter: blur(20px);
}

.ap-warn-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ap-warn-icon i { font-size: 1.6rem; color: #f87171; line-height: 1 }

.ap-warn-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .6rem;
  color: var(--t);
}

.ap-warn-box p {
  font-size: .92rem;
  color: var(--t2);
  line-height: 1.9;
}

.ap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 3.5rem;
}

.ap-card {
  padding: 2rem 1.8rem;
  position: relative;
}

.ap-card:hover::after { opacity: 1 }

.ap-num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 2rem;
  font-weight: 900;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .12;
  line-height: 1;
}

.ap-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.08), rgba(251, 191, 36, 0.04));
  border: 1px solid rgba(248, 113, 113, 0.08);
  display: grid;
  place-items: center;
  transition: .4s var(--bounce);
}

.ap-card-icon i { font-size: 1.4rem; color: #f87171; line-height: 1; transition: color .3s }
.ap-card:hover .ap-card-icon { transform: scale(1.12) rotate(-6deg); box-shadow: 0 6px 20px rgba(248, 113, 113, 0.12); background: linear-gradient(135deg, rgba(248, 113, 113, 0.12), rgba(251, 191, 36, 0.06)) }
.ap-card:hover .ap-card-icon i { color: #fca5a5 }
.ap-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem }
.ap-card p { font-size: .85rem; color: var(--t3); line-height: 1.75 }

.ap-card-type { padding: 2.4rem 2rem }
.ap-card-type h4 { font-size: 1.1rem; margin-bottom: .7rem }
.ap-card-type p { font-size: .9rem; line-height: 1.85 }

.ap-detect {
  margin-bottom: 3.5rem;
}

.ap-detect-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 2.2rem;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(71, 118, 230, 0.04), rgba(142, 84, 233, 0.02));
  border: 1px solid var(--bdr);
  backdrop-filter: blur(20px);
}

.ap-detect-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.06));
  border: 1px solid var(--bdr);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ap-detect-icon i { font-size: 1.6rem; color: var(--p-l); line-height: 1 }
.ap-detect-inner h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; color: var(--t) }
.ap-detect-inner p { font-size: .9rem; color: var(--t2); line-height: 1.85 }

.ap-consequence {
  padding: 2.4rem;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.03), rgba(142, 84, 233, 0.02));
  border: 1px solid rgba(248, 113, 113, 0.1);
  backdrop-filter: blur(20px);
}

.ap-con-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(248, 113, 113, 0.08);
}

.ap-con-header i { font-size: 1.5rem; color: #f87171 }
.ap-con-header h3 { font-size: 1.1rem; font-weight: 800; color: var(--t) }

.ap-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ap-con-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ap-con-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ap-con-icon i { font-size: 1.1rem; color: #f87171; line-height: 1 }
.ap-con-item strong { font-size: .92rem; font-weight: 700; display: block; margin-bottom: .25rem; color: var(--t) }
.ap-con-item p { font-size: .82rem; color: var(--t3); line-height: 1.7; margin: 0 }

/* ===== Mission ===== */
.mis-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 1.5rem }
.mis { padding: 3rem 2rem; text-align: center }

.mis::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g);
  transform: scaleX(0);
  transition: .5s var(--ease);
  transform-origin: left;
}

.mis:hover::before { transform: scaleX(1) }
.mis:hover::after { opacity: 0 }
.mis-i { margin-bottom: 1.3rem; display: flex; justify-content: center }
.mis-i i { font-size: 2.6rem; color: var(--p-l); line-height: 1 }
.mis h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .8rem }
.mis p { font-size: .88rem; color: var(--t3); line-height: 1.85 }

.mis-q {
  text-align: center;
  padding: 2rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(71, 118, 230, 0.04), rgba(142, 84, 233, 0.02));
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  color: var(--t2);
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto }

.faq {
  border: 1px solid var(--bdr);
  border-radius: 14px;
  margin-bottom: 8px;
  background: var(--card);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: .3s var(--ease);
}

.faq:hover { border-color: var(--bdr-h) }

.faq-q {
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--t);
  transition: .25s;
  user-select: none;
  gap: 1rem;
}

.faq-q:hover { color: var(--p-l) }

.faq-arr {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(71, 118, 230, 0.06);
  display: grid;
  place-items: center;
  font-size: .65rem;
  color: var(--p);
  transition: .4s var(--ease);
}

.faq.on .faq-arr { transform: rotate(180deg); background: rgba(71, 118, 230, 0.12) }
.faq-a { max-height: 0; overflow: hidden; transition: .5s var(--ease); color: var(--t3); font-size: .9rem; line-height: 1.8 }
.faq.on .faq-a { max-height: 200px; padding: 0 1.6rem 1.3rem }

/* ===== Pricing ===== */
.pc-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 840px; margin: 0 auto }
.pc { padding: 3rem 2.4rem; text-align: center; border-radius: var(--r2); display: flex; flex-direction: column }
.pc.main { border-color: rgba(71, 118, 230, 0.18) }

.pc.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g);
  border-radius: var(--r2) var(--r2) 0 0;
  z-index: 2;
}

.pc.main .pc-top-glow {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 120px;
  background: radial-gradient(ellipse at center top, rgba(71, 118, 230, 0.06), transparent);
  pointer-events: none;
}

.pc:hover::after { opacity: 0 }
.pc > * { position: relative; z-index: 1 }

.pc-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  background: rgba(71, 118, 230, 0.08);
  border: 1px solid var(--bdr);
  color: var(--p-l);
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pc-name { font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem }

.pc-price {
  font-size: 3.4rem;
  font-weight: 900;
  margin-bottom: .2rem;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pc-price small { font-size: .82rem; font-weight: 400; -webkit-text-fill-color: var(--t3) }
.pc-sub { font-size: .82rem; color: var(--t3); margin-bottom: 2rem }
.pc-list { list-style: none; text-align: left; margin-bottom: 2rem; flex: 1 }

.pc-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: .88rem;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-list li:last-child { border: 0 }

.li-ck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(71, 118, 230, 0.06);
  border: 1px solid var(--bdr);
  display: grid;
  place-items: center;
  font-size: .55rem;
  color: var(--p-l);
  font-weight: 700;
}

/* ===== Partners ===== */
.ptr-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px }
.ptr-carousel { mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%); padding: 10px 0 }
.ptr { padding: 2rem 1.5rem; text-align: center; border-radius: var(--r) }
.ptr:hover::after { opacity: 1 }

.ptr-av {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--g);
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(71, 118, 230, 0.25);
  transition: .4s var(--bounce);
}

.ptr:hover .ptr-av { transform: scale(1.12); box-shadow: 0 6px 24px rgba(71, 118, 230, 0.35) }
.ptr h4 { font-size: .92rem; font-weight: 700; margin-bottom: 2px }
.ptr span { font-size: .75rem; color: var(--t3) }

/* ===== Notice ===== */
.notice {
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(71, 118, 230, 0.025), rgba(142, 84, 233, 0.015));
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.notice-w { max-width: 1240px; margin: 0 auto }
.notice-h { font-weight: 800; font-size: .92rem; margin-bottom: 1.2rem; color: var(--p-l); display: flex; align-items: center; gap: 8px }
.notice-h i { font-size: 1.1rem }
.notice-cols { columns: 2; column-gap: 3rem }

.ni {
  font-size: .84rem;
  color: var(--t3);
  padding: 5px 0;
  break-inside: avoid;
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.7;
}

.ni::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--g);
}

/* ===== CTA ===== */
.cta { text-align: center; padding: 130px 2.5rem; position: relative; overflow: hidden }

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(71, 118, 230, 0.06), transparent 70%);
  pointer-events: none;
}

.cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 1rem; letter-spacing: -.02em; position: relative; z-index: 1 }
.cta h2 em { font-style: normal; background: var(--g); -webkit-background-clip: text; -webkit-text-fill-color: transparent }
.cta > p { color: var(--t3); font-size: 1.05rem; margin-bottom: 2.5rem; position: relative; z-index: 1 }

/* ===== Back to Top ===== */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--bdr);
  backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 900;
  font-size: .9rem;
  color: var(--p-l);
  opacity: 0;
  transform: translateY(12px);
  transition: .4s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btt.show { opacity: 1; transform: translateY(0) }
.btt:hover { border-color: var(--bdr-h); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4) }

/* ===== Footer ===== */
footer { background: var(--bg2); border-top: 1px solid var(--bdr); padding: 4.5rem 2.5rem 0 }
.ft-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem }
.ft-brand p { color: var(--t3); font-size: .84rem; line-height: 1.9; margin-top: 1rem; max-width: 280px }
footer h5 { font-size: .72rem; font-weight: 700; color: var(--t2); margin-bottom: 1rem; letter-spacing: 3px; text-transform: uppercase }
.ft-links { list-style: none }
.ft-links li { margin-bottom: 8px }
.ft-links a { color: var(--t3); text-decoration: none; font-size: .84rem; transition: .3s var(--ease); display: inline-block }
.ft-links a:hover { color: var(--p-l); transform: translateX(4px) }
.ft-bar { max-width: 1240px; margin: 2.5rem auto 0; padding: 1.5rem 0; border-top: 1px solid var(--bdr); display: flex; justify-content: space-between; font-size: .76rem; color: var(--t3) }

/* ===== Booking Modal ===== */
.book-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 1.5rem;
}

.book-overlay.show { opacity: 1; pointer-events: auto }

.book-modal {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  max-width: 520px;
  width: 100%;
  height: 88vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  transform: translate3d(0, 14px, 0);
  transition: transform .3s var(--bounce);
  will-change: transform;
  overflow: hidden;
}

.book-overlay.show .book-modal { transform: translate3d(0, 0, 0) }

.book-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bdr);
  color: var(--t3);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .3s;
  z-index: 2;
}

.book-close:hover { background: rgba(255, 255, 255, 0.08); color: #fff }
.book-title { font-size: 1.4rem; font-weight: 800; margin-bottom: .3rem }
.book-sub { font-size: .88rem; color: var(--t3); margin-bottom: 2rem }
.price-display {
  margin-top: 1.2rem;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.04));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--t2, #cbd5e1);
}
.price-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #10b981;
}
.price-value .price-orig {
  font-size: .82rem;
  font-weight: 400;
  color: var(--t3, #64748b);
  text-decoration: line-through;
  margin-right: 8px;
}
.price-detail {
  font-size: .78rem;
  color: var(--t3, #64748b);
  margin-top: 6px;
}
.price-detail .discount-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .75rem;
  margin-right: 6px;
}
.form-note { font-size: .76rem; color: var(--t3); margin-top: 1rem; text-align: center; line-height: 1.6 }
.book-form { padding: 2.5rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.12) transparent }
.book-form::-webkit-scrollbar { width: 4px }
.book-form::-webkit-scrollbar-track { background: transparent }
.book-form::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px }
.book-form::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.25) }
.book-form.hide { display: none }
.book-step-page { flex: 1; display: flex; flex-direction: column }
.book-step-page .form-submit,
.book-step-page .book-btn-row { margin-top: auto; flex-shrink: 0 }

/* ===== Agreement Step ===== */
.book-agree { display: none; flex-direction: column; flex: 1; overflow: hidden; padding: 2rem 2.5rem 1.5rem }
.book-agree.show { display: flex }
.agree-head { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; flex-shrink: 0 }

.agree-back {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bdr);
  color: var(--t2);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .2s;
  flex-shrink: 0;
}

.agree-back:hover { background: rgba(255, 255, 255, 0.08); color: #fff }
.agree-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 1.2rem; flex-shrink: 0 }
.agree-step { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--t4); font-weight: 600 }
.agree-step.done { color: var(--green) }
.agree-step.active { color: var(--p-l) }

.agree-step .step-n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--bdr);
  display: grid;
  place-items: center;
  font-size: .65rem;
  font-weight: 800;
}

.agree-step.done .step-n { background: rgba(52, 211, 153, 0.1); border-color: var(--green); color: var(--green) }
.agree-step.active .step-n { background: rgba(71, 118, 230, 0.1); border-color: var(--p); color: var(--p-l) }
.agree-line { flex: 1; height: 1px; background: var(--bdr) }

.agree-box {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--bdr);
  margin-bottom: 1rem;
  font-size: .84rem;
  color: var(--t2);
  line-height: 1.9;
}

.agree-box::-webkit-scrollbar { width: 4px }
.agree-box::-webkit-scrollbar-track { background: transparent }
.agree-box::-webkit-scrollbar-thumb { background: var(--bdr); border-radius: 4px }
.agree-box h4 { font-size: .92rem; font-weight: 700; color: var(--t); margin: 1.2rem 0 .5rem }
.agree-box h4:first-child { margin-top: 0 }
.agree-box h4 i { color: var(--p-l); margin-right: 4px }
.agree-box p { margin-bottom: .6rem }
.agree-box ul { padding-left: 1.2rem; margin-bottom: .8rem }
.agree-box ul li { margin-bottom: .3rem; color: var(--t3) }
.agree-box .warn-text { color: var(--red); font-weight: 600 }
.agree-box .highlight { color: var(--yellow); font-weight: 600 }

.agree-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: .8rem;
  cursor: pointer;
  font-size: .84rem;
  color: var(--t2);
  line-height: 1.6;
  user-select: none;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .3s, transform .2s;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  background: transparent;
}

.agree-check:not(.disabled):hover { background: rgba(71, 118, 230, 0.04); border-color: var(--bdr) }
.agree-check.disabled { opacity: .3; pointer-events: none; cursor: not-allowed }
.agree-check.shake { animation: shakeHint .5s var(--ease) }

@keyframes shakeHint {
  0%, 100% { transform: translateX(0) }
  15% { transform: translateX(-6px) }
  30% { transform: translateX(5px) }
  45% { transform: translateX(-4px) }
  60% { transform: translateX(3px) }
  75% { transform: translateX(-2px) }
}

.agree-scroll-hint {
  text-align: center;
  font-size: .76rem;
  color: var(--p-l);
  margin-bottom: .6rem;
  flex-shrink: 0;
  transition: opacity .3s, height .3s, margin .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.agree-scroll-hint.hide { opacity: 0; height: 0; margin: 0; overflow: hidden }

.agree-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid var(--t4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: .25s var(--ease);
  font-size: .75rem;
  color: transparent;
  background: rgba(255, 255, 255, 0.03);
}

.agree-check:not(.disabled) .agree-checkbox { border-color: var(--p-l); background: rgba(71, 118, 230, 0.06); box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.08) }
.agree-check.checked .agree-checkbox { background: var(--p); border-color: var(--p); color: #fff; box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.15); transform: scale(1.05) }

.agree-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--t4);
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid var(--bdr);
  cursor: not-allowed;
  font-family: inherit;
  transition: all .4s var(--ease);
  flex-shrink: 0;
  box-shadow: none;
}

.agree-submit:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important }
.agree-submit.ready { background: rgba(71, 118, 230, 0.1); border-color: rgba(71, 118, 230, 0.25); color: var(--p-l); cursor: pointer; box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.06) }
.agree-submit.ready:hover { background: rgba(71, 118, 230, 0.15); border-color: rgba(71, 118, 230, 0.4); box-shadow: 0 0 0 4px rgba(71, 118, 230, 0.1) }
.agree-submit.active { background: var(--g); color: #fff; border-color: transparent; box-shadow: 0 4px 18px rgba(71, 118, 230, 0.35); cursor: pointer }
.agree-submit.active:hover { box-shadow: 0 8px 30px rgba(71, 118, 230, 0.5); transform: translateY(-2px) }

/* ===== Express tag ===== */
.express-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
  vertical-align: middle;
  margin-left: 6px;
  letter-spacing: 1px;
}

/* ===== Form hint ===== */
.form-hint { font-weight: 400; color: var(--t4); font-size: .76rem }

/* ===== Club Search Autocomplete ===== */
.club-search-wrap { position: relative }

.club-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 4px;
}

.club-dropdown.show { display: block }

.club-dropdown::-webkit-scrollbar { width: 4px }
.club-dropdown::-webkit-scrollbar-track { background: transparent }
.club-dropdown::-webkit-scrollbar-thumb { background: var(--bdr); border-radius: 4px }

.club-option {
  padding: 10px 14px;
  font-size: .88rem;
  color: var(--t2);
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.club-option:hover, .club-option.active { background: rgba(71, 118, 230, 0.1); color: var(--t) }
.club-option .club-match { color: var(--p-l); font-weight: 600 }
.club-option-personal { color: var(--t3); font-style: italic }

.club-no-result {
  padding: 14px;
  text-align: center;
  color: var(--t4);
  font-size: .84rem;
}

/* ===== Date Tabs ===== */
.date-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.date-tab {
  flex: 1;
  min-width: 0;
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--bdr);
  color: var(--t2);
  font-size: .82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: all .25s var(--ease);
  line-height: 1.3;
}

.date-tab:hover { border-color: var(--bdr-h); background: rgba(71, 118, 230, 0.04) }

.date-tab.selected {
  background: rgba(71, 118, 230, 0.12);
  border-color: var(--p);
  color: var(--p-l);
  box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.08);
}

.date-tab-day { display: block; font-size: .74rem; color: var(--t3); margin-top: 2px; font-weight: 400 }
.date-tab.selected .date-tab-day { color: var(--p-l) }

/* ===== Slot List ===== */
.slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
  gap: 10px;
}

.slot-placeholder,
.slot-loading {
  grid-column: 1 / -1;
  padding: 14px;
  text-align: center;
  color: var(--t4);
  font-size: .84rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--bdr);
}

.slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--bdr);
  cursor: pointer;
  transition: all .2s var(--ease);
  user-select: none;
}

.slot-item:hover:not(.slot-full) { border-color: var(--bdr-h); background: rgba(71, 118, 230, 0.04) }

.slot-item.selected {
  background: rgba(71, 118, 230, 0.12);
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.08);
}

.slot-item.slot-full {
  opacity: .45;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.01);
}

.slot-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slot-time {
  font-size: .98rem;
  font-weight: 700;
  color: var(--t);
  line-height: 1.1;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.slot-sub {
  font-size: .72rem;
  color: var(--t4);
  line-height: 1;
}

.slot-item.slot-full .slot-time { color: var(--t3) }
.slot-item.selected .slot-time { color: var(--p-l) }
.slot-item.selected .slot-sub { color: rgba(167, 191, 255, 0.9) }

.slot-remain {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 999px;
  letter-spacing: .01em;
}

.slot-remain.has-slots {
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.slot-remain.few-slots {
  background: rgba(251, 191, 36, 0.08);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.slot-remain.no-slots {
  background: rgba(248, 113, 113, 0.08);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.15);
}

@media (max-width: 420px) {
  .slot-list {
    grid-template-columns: 1fr;
  }

  .slot-item {
    min-height: 54px;
    padding: 10px 12px;
  }

  .slot-time {
    font-size: .94rem;
  }
}

/* ===== Booking Success ===== */
.book-success { text-align: center; display: none; padding: 2.5rem; overflow-y: auto; flex: 1; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.12) transparent }
.book-success::-webkit-scrollbar { width: 4px }
.book-success::-webkit-scrollbar-track { background: transparent }
.book-success::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px }
.book-success.show { display: flex; flex-direction: column }

/* ===== Pay Checkout ===== */
.pay-checkout { text-align: left }

.pay-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.05rem; font-weight: 700; color: var(--t);
  margin-bottom: 1.6rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pay-header-icon { font-size: 1.15rem; color: #34d399 }

.pay-hero {
  text-align: center;
  padding: 1.6rem 1rem 1.4rem;
  margin-bottom: 1.4rem;
  background: linear-gradient(160deg, rgba(71,118,230,.1) 0%, rgba(142,84,233,.06) 100%);
  border: 1px solid rgba(71,118,230,.1);
  border-radius: 16px;
  position: relative; overflow: hidden;
}
.pay-hero::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(71,118,230,.12) 0%, transparent 70%);
  pointer-events: none;
}
.pay-hero-label { font-size: .82rem; color: var(--t3); margin-bottom: .5rem; letter-spacing: .5px }
.pay-hero-amount {
  font-size: 2.6rem; font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1.1;
}
.pay-hero-currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-right: 2px; opacity: .7 }
.pay-hero-desc { font-size: .8rem; color: var(--t4); margin-top: .7rem }

.pay-methods-label { font-size: .82rem; color: var(--t3); margin-bottom: .7rem; letter-spacing: .5px }

.pay-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1rem }

.pay-method {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  cursor: pointer; color: var(--t);
  transition: all .2s ease;
}
.pay-method:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(71,118,230,.3);
  transform: translateX(2px);
}
.pay-method:active { transform: translateX(0); opacity: .85 }

.pay-method-brand {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.pay-brand-alipay { background: linear-gradient(135deg, #1677ff, #4da0ff) }
.pay-brand-wxpay { background: linear-gradient(135deg, #07c160, #2bd97b) }

.pay-method-info { flex: 1; text-align: left }
.pay-method-name { font-size: .95rem; font-weight: 600 }
.pay-method-hint {
  display: inline-block; font-size: .7rem; font-weight: 600;
  color: #f59e0b; background: rgba(245,158,11,.12);
  padding: 1px 7px; border-radius: 4px; margin-left: 8px;
  vertical-align: middle;
}
.pay-method-arrow { font-size: 1.2rem; color: var(--t4); flex-shrink: 0; transition: transform .2s }
.pay-method:hover .pay-method-arrow { transform: translateX(3px); color: var(--t2) }

.pay-qr-card {
  margin-top: .6rem; padding: 1.2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; text-align: center;
}
.pay-qr-hint { font-size: .85rem; color: var(--t3); margin-bottom: .8rem }
.pay-qr-frame {
  width: 220px; height: 220px; margin: 0 auto;
  padding: 10px; background: #fff; border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.pay-qr-frame img { width: 100%; height: 100%; border-radius: 6px }
.pay-polling-hint {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .8rem; color: var(--t4); margin-top: .8rem;
}

.pay-refresh-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; border-radius: 10px;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  color: #4776E6; background: rgba(71, 118, 230, 0.08);
  border: 1px solid rgba(71, 118, 230, 0.2);
  transition: all .2s;
}
.pay-refresh-btn:hover { background: rgba(71, 118, 230, 0.15); border-color: rgba(71, 118, 230, 0.4) }
.pay-refresh-btn:active { transform: scale(.97) }

.pay-footer {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .75rem; color: var(--t4); opacity: .5;
  padding-top: .6rem;
}
.pay-footer i { font-size: .85rem }

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.1);
  border: 2px solid #34d399;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: #34d399;
}

.order-code {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: .8rem 0;
  letter-spacing: 2px;
}

/* ===== Cheat Wall ===== */
.cw {
  padding: 100px 2.5rem; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(248,113,113,.03) 0%, rgba(15,18,35,0) 100%);
  border-top: 1px solid rgba(248,113,113,.1);
  border-bottom: 1px solid rgba(248,113,113,.1);
}

.cw-scroll {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(248,113,113,.12);
  border-radius: 16px;
  background: rgba(248,113,113,.02);
  mask-image: linear-gradient(to bottom, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}

.cw-track { display: flex; flex-direction: column; gap: 10px; animation: cwScroll 30s linear infinite }
.cw-track:hover { animation-play-state: paused }
@keyframes cwScroll { 0% { transform: translateY(0) } 100% { transform: translateY(-50%) } }

.cw-item {
  display: grid;
  grid-template-columns: 1fr 1fr 90px 120px 2fr;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--bdr);
  backdrop-filter: blur(20px);
  font-size: .86rem;
  color: var(--t2);
  transition: .3s var(--ease);
  flex-shrink: 0;
}

.cw-item:hover { border-color: var(--bdr-h); background: rgba(14, 18, 38, 0.85) }
.cw-lbl { font-size: .7rem; color: var(--t3); margin-bottom: 2px; font-weight: 500 }
.cw-val { font-family: 'Inter', monospace; font-weight: 600; font-size: .85rem }
.cw-res { display: inline-block; padding: 4px 14px; border-radius: 6px; font-weight: 700; font-size: .78rem; letter-spacing: .5px }
.cw-res.red { background: rgba(248, 113, 113, 0.1); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.18) }
.cw-res.purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.18) }
.cw-res.gray { background: rgba(255, 255, 255, 0.04); color: var(--t3); border: 1px solid var(--bdr) }
.cw-reason { font-size: .8rem; color: var(--t3); line-height: 1.5; overflow: hidden; text-overflow: ellipsis; white-space: nowrap }
.cw-head { display: grid; grid-template-columns: 1fr 1fr 90px 120px 2fr; gap: 16px; padding: 0 20px 12px; font-size: .7rem; font-weight: 700; color: var(--t3); letter-spacing: 2px; text-transform: uppercase }

/* ===== Record Query ===== */
.rq { text-align: center }

.rq-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.rq-box::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--g);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: .5s;
  pointer-events: none;
}

.rq-box:hover::after { opacity: .5 }
.rq-form { display: flex; gap: 10px; margin-bottom: 1.5rem }

.rq-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bdr);
  color: #fff;
  font-size: .92rem;
  font-family: inherit;
  outline: none;
  transition: .3s;
}

.rq-input::placeholder { color: var(--t4) }
.rq-input:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.1) }

.rq-btn {
  padding: 13px 28px;
  border-radius: 12px;
  background: var(--g);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: .4s;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(71, 118, 230, 0.3);
}

.rq-btn:hover { box-shadow: 0 6px 24px rgba(71, 118, 230, 0.45); transform: translateY(-1px) }

/* 图片验证码 */
.rq-captcha-row { display: flex; align-items: center; gap: 8px; margin: 10px 0; }
#rqCaptchaInput { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: var(--t); border-radius: 8px; padding: 8px 10px; font-size: .95rem; }
#rqCaptchaImg { height: 40px; cursor: pointer; border-radius: 6px; }
.rq-result { display: none; text-align: left; margin-top: 1rem }
.rq-result.show { display: block; animation: fadeUp .4s var(--ease) }
.rq-card { padding: 1.3rem; border-radius: 14px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--bdr); position: relative; overflow: hidden }

.rq-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: .88rem; position: relative; z-index: 1 }
.rq-row:last-child { border: 0 }
.rq-row .rl { color: var(--t3); flex-shrink: 0; margin-right: 12px }
.rq-row .rv { font-weight: 600; color: var(--t); text-align: right }
.rq-empty { padding: 1.5rem; text-align: center; color: var(--t3); font-size: .9rem }
.rq-note { font-size: .76rem; color: var(--t4); margin-top: 1rem }

.rq-watermark {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; color: rgba(255,255,255,.06); font-weight: 700;
  text-align: center; line-height: 2.2;
  transform: rotate(-18deg); pointer-events: none;
  word-break: break-all; padding: 2rem;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent, transparent 60px,
    rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 61px
  );
}

.rq-disclaimer {
  position: relative; z-index: 1;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.08);
  font-size: .7rem; color: var(--t4); text-align: center; line-height: 1.6; opacity: .8;
}

.book-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
  padding: 0 10px;
}
.bstep {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .45;
  transition: opacity .25s;
}
.bstep.active { opacity: 1 }
.bstep.done { opacity: .7 }
.bstep-n {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bdr);
  color: var(--t3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: background .25s, color .25s;
}
.bstep.active .bstep-n { background: var(--p); color: #fff }
.bstep.done .bstep-n { background: #22c55e; color: #fff }
.bstep-t { font-size: .8rem; color: var(--t2); font-weight: 500 }
.bstep-line {
  flex: 1;
  height: 2px;
  background: var(--bdr);
  margin: 0 10px;
  max-width: 60px;
}

.book-btn-row {
  display: flex;
  gap: 10px;
}
.book-btn-row .form-submit { flex: 1 }
.form-submit-back {
  background: transparent !important;
  border: 1px solid var(--bdr) !important;
  color: var(--t2) !important;
}
.form-submit-back:hover {
  border-color: var(--p) !important;
  color: var(--t) !important;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  padding: 2px;
}
.game-grid::-webkit-scrollbar { width: 4px }
.game-grid::-webkit-scrollbar-track { background: transparent }
.game-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px }
.game-grid::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.22) }
.game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px 6px;
  border-radius: 8px;
  border: 2px solid var(--bdr);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
  text-align: center;
}
.game-card:hover {
  border-color: var(--p);
  background: rgba(var(--pr), .06);
  transform: translateY(-1px);
}
.game-card.selected {
  border-color: var(--p);
  background: rgba(var(--pr), .12);
  box-shadow: 0 0 0 2px rgba(var(--pr), .25);
}
.game-card-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
}
.game-card-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--t4);
}
.game-card-name {
  font-size: .72rem;
  color: var(--t2);
  line-height: 1.15;
  word-break: break-all;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.game-card-check {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--p);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
}
.game-card.selected .game-card-check {
  display: flex;
}

/* ===== Admin Login Modal ===== */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 99995;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  padding: 1.5rem;
}

.admin-overlay.show { opacity: 1; pointer-events: auto }

.admin-modal {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  max-width: 420px;
  width: 100%;
  padding: 2.8rem 2.4rem;
  position: relative;
  transform: translate3d(0, 14px, 0);
  transition: transform .3s var(--bounce);
  will-change: transform;
}

.admin-overlay.show .admin-modal { transform: translate3d(0, 0, 0) }
.admin-modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--g); border-radius: var(--r2) var(--r2) 0 0 }

.admin-modal-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(71, 118, 230, 0.08), transparent 70%);
  pointer-events: none;
}

.admin-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bdr);
  color: var(--t3);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .3s;
}

.admin-close:hover { background: rgba(255, 255, 255, 0.08); color: #fff }
.admin-logo { display: flex; align-items: center; gap: 12px; margin-bottom: .5rem }
.admin-logo-i { width: 44px; height: 44px; background: transparent; border-radius: 0; display: grid; place-items: center; font-weight: 900; font-size: 17px; color: #fff }
.admin-logo-i img { width: 100%; height: 100%; display: block; object-fit: contain }
.admin-logo-t { font-weight: 800; font-size: 1.1rem; background: var(--g); -webkit-background-clip: text; -webkit-text-fill-color: transparent }
.admin-sub { font-size: .84rem; color: var(--t3); margin-bottom: 2rem }
.admin-field { margin-bottom: 1.1rem }
.admin-label { display: block; font-size: .8rem; font-weight: 600; color: var(--t2); margin-bottom: .45rem }

.admin-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bdr);
  color: #fff;
  font-size: .92rem;
  font-family: inherit;
  outline: none;
  transition: .3s;
}

.admin-input:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.1) }
.admin-input::placeholder { color: var(--t4) }
.admin-input-wrap { position: relative }
.admin-input-wrap i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--t4); font-size: 1rem; cursor: pointer; transition: .2s; padding: 4px }
.admin-input-wrap i:hover { color: var(--t2) }

.admin-submit {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: var(--g);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: .4s;
  margin-top: .6rem;
  box-shadow: 0 4px 18px rgba(71, 118, 230, 0.3);
}

.admin-submit:hover { box-shadow: 0 8px 30px rgba(71, 118, 230, 0.45); transform: translateY(-2px) }
.admin-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important }

.admin-error {
  display: none;
  margin-top: .8rem;
  padding: 10px 14px;
  border-radius: 9px;
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.15);
  color: #f87171;
  font-size: .82rem;
  font-weight: 500;
  text-align: center;
}

.admin-error.show { display: block; animation: fadeUp .3s var(--ease) }
.admin-note { font-size: .74rem; color: var(--t4); margin-top: 1.2rem; text-align: center; line-height: 1.6 }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .svc-g, .det-g { grid-template-columns: repeat(2, 1fr) }
  .hero { flex-direction: column; text-align: center; padding: 130px 2rem 60px }
  .hero-p { margin: 0 auto 2.8rem }
  .hero-acts { justify-content: center }
  .bento { max-width: 480px; margin: 0 auto }
}

@media (max-width: 768px) {
  section { padding: 80px 1.5rem }

  .mob-nav-overlay {
    position: fixed; inset: 0; z-index: 9995;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .mob-nav-overlay.show { opacity: 1; pointer-events: all }

  .n-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh;
    z-index: 9998;
    background: linear-gradient(180deg, #0d1129 0%, #0a0e1f 100%);
    border-left: 1px solid rgba(71, 118, 230, 0.12);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 80px 0 32px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.4);
  }

  .n-links.show { transform: translateX(0) }

  .n-links li { list-style: none }

  .n-links a {
    font-size: .92rem;
    padding: 13px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    border-radius: 0;
    transition: color .2s, background .2s, padding-left .2s;
    border-left: 3px solid transparent;
  }

  .n-links a:not(.n-admin-btn):not(.n-cta):hover,
  .n-links a:not(.n-admin-btn):not(.n-cta):active {
    color: #fff;
    background: rgba(71, 118, 230, 0.08);
    border-left-color: var(--p);
    padding-left: 32px;
  }

  .n-sep { display: none }

  .n-links .n-admin-btn {
    margin: 12px 24px 0 !important;
    justify-content: center;
    padding: 11px 20px !important;
    font-size: .85rem !important;
    border-color: rgba(71, 118, 230, 0.25) !important;
    background: rgba(71, 118, 230, 0.06) !important;
    border-radius: 10px !important;
  }

  .n-links .n-cta {
    margin: 10px 24px 0 !important;
    justify-content: center;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-size: .9rem !important;
  }

  .hamburger { display: block; z-index: 9999; position: relative }
  .hero h1 { font-size: 2.2rem }
  .about-grid { grid-template-columns: 1fr; gap: 2rem }
  .svc-g, .det-g { grid-template-columns: 1fr 1fr; gap: 8px }
  .svc { padding: 1.4rem 1rem }
  .svc-i { width: 40px; height: 40px; border-radius: 10px; margin-bottom: .8rem }
  .svc-i i { font-size: 1.2rem }
  .svc h3 { font-size: .88rem; margin-bottom: .3rem }
  .svc p { font-size: .75rem; line-height: 1.55 }
  .det { padding: 1.2rem 1rem }
  .det-i { width: 36px; height: 36px; border-radius: 10px; margin-bottom: .6rem }
  .det-i i { font-size: 1.1rem }
  .det h4 { font-size: .82rem; margin-bottom: .2rem }
  .det p { font-size: .72rem; line-height: 1.5 }
  .det-full { grid-column: 1 / -1 }
  .mis-g, .ap-grid { grid-template-columns: 1fr }
  .ap-con-grid { grid-template-columns: 1fr }
  .ap-warn-box, .ap-detect-inner { flex-direction: column; gap: 1rem }
  .proc-g { grid-template-columns: 1fr 1fr; gap: 10px }
  .proc-line { display: none }
  .pc-g { grid-template-columns: 1fr 1fr; gap: 10px }
  .pc { padding: 1.2rem 1rem }
  .pc-badge { font-size: .6rem; padding: 3px 10px }
  .pc-name { font-size: .95rem; margin-bottom: .3rem }
  .pc-price { font-size: 1.6rem }
  .pc-price small { font-size: .65rem }
  .pc-sub { font-size: .7rem; margin-bottom: 1rem }
  .pc-list li { padding: 6px 0; font-size: .75rem }
  .li-ck { width: 16px; height: 16px; font-size: .55rem; margin-right: 6px }
  .pc-list { margin-bottom: 1rem }
  .pc .btn { padding: 10px 12px; font-size: .8rem }
  .ptr-g { grid-template-columns: 1fr 1fr; gap: 8px }
  .ptr { padding: 1.2rem 1rem }
  .ptr-av { width: 42px; height: 42px; margin: 0 auto .6rem; font-size: .78rem }
  .ptr h4 { font-size: .82rem }
  .ptr span { font-size: .68rem }
  .notice-cols { columns: 1 }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem }
  .ft-bar { flex-direction: column; gap: .5rem; text-align: center }
  .s-top { flex-direction: column; align-items: flex-start }
  .s-top.ctr { align-items: center }
  .bento { grid-template-columns: 1fr }
  .b.w { grid-column: auto }
  .cw-item { grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 14px }
  .cw-head { display: none }
  .cw-reason { grid-column: 1 / -1 }
  .rq-form { flex-direction: column }
  .game-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; max-height: 280px }
  .game-card { padding: 6px 3px 5px }
  .game-card-img, .game-card-placeholder { width: 32px; height: 32px }
  .game-card-name { font-size: .68rem }
  .bstep-t { font-size: .72rem }
}

/* ── 订单查询结果卡片 ── */
.oq-result { margin-top: 12px }
.oq-result.show { animation: fadeUp .35s ease }
.oq-card { padding: 1.1rem 1.3rem; border-radius: 14px; margin-bottom: 10px; transition: transform .2s }
.oq-card:hover { transform: translateY(-2px) }
.oq-status { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: .95rem }
.oq-status i { font-size: 1.2rem }
.oq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px }
.oq-field { display: flex; flex-direction: column; gap: 2px }
.oq-lbl { font-size: .76rem; color: var(--t3) }
.oq-val { font-size: .88rem; color: var(--t); font-weight: 500 }
@media (max-width: 600px) {
  .oq-grid { grid-template-columns: 1fr }
}
