/* ============================================================
   星耀电竞网咖 官网样式
   配色：深夜蓝底 + 青蓝/紫色霓虹点缀
   ============================================================ */

:root {
  --bg:        #07090f;
  --bg-alt:    #0c1019;
  --surface:   #111725;
  --surface-2: #161d2e;
  --line:      #222b3e;
  --text:      #e8ecf5;
  --text-dim:  #9aa5bd;
  --text-mute: #6b768e;

  --accent:      #2ee6c8;   /* 主色：青 */
  --accent-2:    #7b5cff;   /* 辅色：紫 */
  --accent-warm: #ffb547;   /* 强调：橙 */
  --danger:      #ff5d73;

  --radius:    14px;
  --radius-lg: 20px;
  --wrap:      1200px;
  --header-h:  70px;

  --shadow:    0 18px 50px rgba(0, 0, 0, .45);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC",
               -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol, dl { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 通用按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, #35c8ff 55%, var(--accent-2) 100%);
  color: #06131a;
  box-shadow: 0 10px 28px rgba(46, 230, 200, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(46, 230, 200, .35); }
.btn-ghost {
  background: rgba(255, 255, 255, .03);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm    { padding: 9px 18px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

/* ---------- 小标签 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(46, 230, 200, .18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 230, 200, .18); }
  50%      { box-shadow: 0 0 0 9px rgba(46, 230, 200, 0); }
}

/* ============================================================
   顶部导航
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 9, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06131a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.logo-text small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--text-mute);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--text-dim);
  transition: color .2s ease, background .2s ease;
}
.nav > a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav > a.active { color: var(--accent); }
.nav-cta { margin-left: 10px; color: #06131a !important; }
.nav-cta:hover { background: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   首屏
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
}
.glow-1 {
  width: 560px; height: 560px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(46, 230, 200, .5), transparent 70%);
}
.glow-2 {
  width: 620px; height: 620px;
  top: 40px; right: -180px;
  background: radial-gradient(circle, rgba(123, 92, 255, .5), transparent 70%);
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero-copy h1 .accent {
  background: linear-gradient(100deg, var(--accent), #4bd4ff 45%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--accent);
}
.hero-stats span { font-size: 13px; color: var(--text-mute); }

/* 首屏右侧卡片 */
.card-glass {
  background: linear-gradient(160deg, rgba(22, 29, 46, .95), rgba(17, 23, 37, .85));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
}
.live i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s infinite;
}
.card-time { font-size: 13px; color: var(--text-mute); font-variant-numeric: tabular-nums; }

.seat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .06);
  font-size: 15px;
}
.seat-list li:last-child { border-bottom: 0; }
.seat-list span { color: var(--text-dim); }
.seat-list b { font-size: 14px; font-weight: 700; }
.seat-list .ok   { color: var(--accent); }
.seat-list .warn { color: var(--accent-warm); }
.seat-list .bad  { color: var(--danger); }

.card-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-mute);
}
.card-note a { color: var(--accent); }

/* 跑马灯 */
.marquee {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 16, 25, .7);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: scroll-x 34s linear infinite;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-mute);
  white-space: nowrap;
}
.marquee-track span:nth-child(odd) { color: var(--text-dim); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   通用区块
   ============================================================ */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(27px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-sub { color: var(--text-dim); font-size: 16px; }

/* ---------- 场区环境 ---------- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.zone-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.zone-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 230, 200, .45);
  box-shadow: var(--shadow-sm);
}
.zone-big { grid-column: span 2; }
.zone-big .zone-img { min-height: 250px; }

.zone-img {
  position: relative;
  min-height: 165px;
  background-size: 200% 200%;
  animation: shift 14s ease infinite;
}
.zone-img::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .28) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .5;
}
@keyframes shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.img-1 { background-image: linear-gradient(115deg, #0e2f3d, #16c5a8, #3d2f8f, #0e2f3d); }
.img-2 { background-image: linear-gradient(115deg, #2a1b4d, #7b5cff, #1b2b52); }
.img-3 { background-image: linear-gradient(115deg, #4d1b34, #ff6b9d, #2a1b4d); }
.img-4 { background-image: linear-gradient(115deg, #10283d, #2ee6c8, #123054); }
.img-5 { background-image: linear-gradient(115deg, #2c2416, #ffb547, #1d2438); }

.zone-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.zone-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 9px; }
.zone-body p { color: var(--text-dim); font-size: 14.5px; flex: 1; }
.tag {
  align-self: flex-start;
  padding: 3px 11px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(46, 230, 200, .13);
  border: 1px solid rgba(46, 230, 200, .35);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}
.zone-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--text-mute);
}
.zone-meta li:last-child { color: var(--accent-warm); font-weight: 700; }

/* ---------- 机器配置 ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}
.spec-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.spec-card:hover { transform: translateY(-4px); }
.spec-card.featured {
  border-color: rgba(46, 230, 200, .5);
  background:
    linear-gradient(170deg, rgba(46, 230, 200, .08), transparent 55%),
    var(--surface-2);
  box-shadow: 0 0 0 1px rgba(46, 230, 200, .12), var(--shadow-sm);
}
.ribbon {
  position: absolute;
  top: -12px; right: 22px;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #06131a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.spec-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.spec-card h3 { font-size: 19px; font-weight: 700; }
.spec-price { font-size: 26px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.spec-price span { font-size: 13px; font-weight: 500; color: var(--text-mute); margin-left: 2px; }
.spec-card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .055);
  font-size: 14.5px;
}
.spec-card ul li:last-child { border-bottom: 0; }
.spec-card ul span { color: var(--text-mute); flex-shrink: 0; }
.spec-card ul b { font-weight: 600; text-align: right; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-row li {
  padding: 20px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.feature-row b { display: block; font-size: 16px; margin-bottom: 6px; }
.feature-row span { font-size: 13.5px; color: var(--text-dim); line-height: 1.6; }

/* ---------- 价格 ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .25s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: rgba(123, 92, 255, .55);
  background: linear-gradient(170deg, rgba(123, 92, 255, .12), transparent 55%), var(--surface-2);
  box-shadow: var(--shadow-sm);
  padding: 38px 26px;
}
.price-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dim); }
.price-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.25;
  margin-top: 8px;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-num span { font-size: 17px; margin-left: 4px; }
.price-time { font-size: 13.5px; color: var(--text-mute); margin-bottom: 20px; }
.price-card ul { flex: 1; margin-bottom: 22px; }
.price-card ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.price-card ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--accent);
  font-weight: 800;
}
.price-foot {
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
}

/* ---------- 赛事 ---------- */
.event-list { display: flex; flex-direction: column; gap: 14px; }
.event-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s ease, transform .25s ease;
}
.event-item:hover { border-color: rgba(46, 230, 200, .4); transform: translateX(5px); }
.event-date {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}
.event-date b { font-size: 17px; font-weight: 800; color: var(--accent); }
.event-date span { font-size: 13px; color: var(--text-mute); font-variant-numeric: tabular-nums; }
.event-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.event-body p { font-size: 14.5px; color: var(--text-dim); }
.event-tag {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dim);
  white-space: nowrap;
}
.event-tag.hot {
  border-color: rgba(255, 181, 71, .45);
  background: rgba(255, 181, 71, .12);
  color: var(--accent-warm);
}

/* ---------- 餐饮 ---------- */
.food-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.food-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s ease;
}
.food-card:hover { transform: translateY(-5px); border-color: rgba(123, 92, 255, .45); }
.food-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(46, 230, 200, .16), rgba(123, 92, 255, .16));
  border: 1px solid var(--line);
  font-size: 26px;
}
.food-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.food-card p { font-size: 14px; color: var(--text-dim); }

/* ---------- 门店信息 ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.contact-info dl > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info dt { font-size: 14.5px; color: var(--text-mute); font-weight: 600; }
.contact-info dd { font-size: 15px; }
.contact-info dd small { color: var(--text-mute); font-size: 13px; }
.contact-info dd a { color: var(--accent); font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.contact-map { display: flex; flex-direction: column; gap: 18px; }
.map-placeholder {
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(46, 230, 200, .09), rgba(123, 92, 255, .09)),
    var(--surface);
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-placeholder > * { position: relative; }
.pin { font-size: 34px; margin-bottom: 8px; }
.map-placeholder b { font-size: 19px; font-weight: 700; }
.map-placeholder p { color: var(--text-dim); font-size: 14.5px; }
.map-placeholder small { color: var(--text-mute); font-size: 12.5px; }

.qr-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.qr {
  display: grid;
  place-items: center;
  width: 92px; height: 92px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 5px;
}
.qr-inner {
  display: grid;
  place-items: center;
  width: 100%; height: 100%;
  border-radius: 9px;
  background: var(--surface);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: var(--text-dim);
}
.qr-text b { display: block; font-size: 16px; margin-bottom: 5px; }
.qr-text p { font-size: 13.5px; color: var(--text-dim); }

/* ============================================================
   页脚
   ============================================================ */
.site-footer {
  padding: 52px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; text-align: left; }
.footer-brand p { font-size: 14.5px; font-weight: 600; line-height: 1.5; }
.footer-brand small { font-weight: 400; color: var(--text-mute); font-size: 12.5px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.footer-nav a { font-size: 14px; color: var(--text-dim); transition: color .2s ease; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  width: 100%;
  font-size: 13px;
  color: var(--text-mute);
}

/* 回到顶部 */
.back-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 19px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .28s ease;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   滚动淡入
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1080px) {
  .nav > a { padding: 8px 10px; font-size: 14px; }
  .zone-grid, .spec-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-big { grid-column: span 2; }
  .feature-row, .food-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-card.featured { padding: 30px 26px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 20px 22px;
    background: rgba(8, 11, 18, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav > a { padding: 13px 14px; font-size: 16px; border-radius: 10px; }
  .nav-cta { margin: 10px 0 0; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 34px; }
  .hero { padding-top: calc(var(--header-h) + 50px); }
  .hero-inner { padding-bottom: 54px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .hero-stats strong { font-size: 26px; }

  .zone-grid, .spec-grid, .price-grid, .feature-row, .food-grid { grid-template-columns: 1fr; }
  .zone-big { grid-column: span 1; }
  .zone-big .zone-img { min-height: 180px; }

  .event-item { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .event-item:hover { transform: none; }
  .event-date {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    text-align: left;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .event-tag { justify-self: start; }

  .contact-info dl > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-brand { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .logo-text { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .qr-box { flex-direction: column; text-align: center; }
}
