/* OrangeLine · Atmosphere（2026-08-03）· 夜场氛围图 + 装饰层 + 动态 CTA · 禁紫/香槟沙/沙丘青绿渐变 */

:root {
  --bg: #f7f4f0;
  --bg-mid: #efe9e2;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --sand: #e7dfd4;
  --border: rgba(28, 22, 16, 0.1);
  --border-glow: none;
  --text: #1a1410;
  --text-dim: #7a7068;
  --trust: #3f6f68;
  --teal-sky: #3f6f68;
  --ice: var(--brand);
  --mist: var(--text-dim);
  --rose: #e8b4bc;
  --berry: var(--brand);
  --brand: #ff6a1a;
  --brand-deep: #e55a0f;
  --brand-soft: rgba(255, 106, 26, 0.12);
  --gold: var(--brand);
  --mint: var(--trust);
  --silver: #8a827a;
  --fog: #1a1410;
  --ink: #1a1410;
  --ok: #3f6f68;
  --warn: #b07820;
  --danger: #c23b4a;
  --accent: var(--brand);
  --accent2: var(--brand-deep);
  --night: #12100e;
  --tabbar-h: 58px;
  --topbar-h: 52px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 28px rgba(26, 20, 16, 0.08);
  --shadow-soft: 0 4px 14px rgba(26, 20, 16, 0.06);
  --font-display: "PingFang SC", "HarmonyOS Sans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-black: var(--font-display);
  --font-body: "PingFang SC", "HarmonyOS Sans", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.01em;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(255, 106, 26, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(26, 20, 16, 0.04), transparent 50%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

.topbar, #view, .tabbar, .toast { position: relative; z-index: 1; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  background: rgba(245, 245, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-logo {
  width: 26px;
  height: 26px;
  border-radius: 0;
  flex-shrink: 0;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}
.topbar-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.topbar-city {
  margin-left: 2px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}
.topbar-back {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 24px;
  padding: 4px 8px 4px 0;
  cursor: pointer;
  line-height: 1;
}
.topbar-home {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.topbar-home .topbar-logo { pointer-events: none; }
.empty-panel-slim {
  padding: 18px 14px;
}
.empty-panel-slim p {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}
.topbar-spacer { flex: 1; }
.topbar-action {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 106, 26, 0.1);
  border: 1px solid rgba(255, 106, 26, 0.35);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  cursor: pointer;
}

/* ---------- Layout ---------- */
#view {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 22px calc(var(--tabbar-h) + 48px);
  animation: viewIn 0.35s ease both;
}

@keyframes viewIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 8px 2px 20px;
  margin-bottom: 8px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero::before { content: none; }
.hero::after { content: none; }
.hero-kicker { display: none; }

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: none;
  object-fit: contain;
  background: #fff;
}
.hero-brand {
  font-family: var(--font-black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: none;
  color: var(--ink);
}
.hero-brand-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero-slogan {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 12em;
}
.hero-slogan em {
  font-style: normal;
  color: var(--brand);
  border-bottom: none;
}
.hero-tagline {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 22px;
  max-width: 28em;
}
.hero-tagline b { color: var(--ink); font-weight: 600; }

.hero-ctas {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-ctas-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-ctas-secondary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 420px) {
  .hero-ctas-primary { grid-template-columns: 1fr; }
  .hero-slogan { font-size: 26px; }
}

/* ---------- Module rails (IA zones, not flat button dump) ---------- */
.rail {
  margin-bottom: 28px;
}
.rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.rail-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0;
  color: var(--ink);
}
.rail-title span {
  display: none;
}
.rail-link {
  background: none;
  border: none;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  padding: 0;
}

.duo-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.mod-tile {
  position: relative;
  overflow: hidden;
  padding: 18px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
  min-height: 108px;
}
.mod-tile:hover, .mod-tile:active {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 26, 0.28);
}
.mod-tile::after {
  content: "";
  position: absolute;
  top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 236, 242, 0.08), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.mod-tile:hover::after {
  animation: sheen 0.7s ease once;
}
@keyframes sheen {
  from { left: -40%; opacity: 1; }
  to { left: 120%; opacity: 0; }
}
.mod-tile .mod-en {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}
.mod-tile .mod-zh {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mod-tile .mod-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}
.mod-tile.mod-dj {
  border-color: rgba(139, 107, 158, 0.35);
}
.mod-tile.mod-gear {
  border-color: rgba(255, 106, 26, 0.28);
}

/* ---------- Section (legacy alias) ---------- */
.section { margin-bottom: 28px; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.section-link {
  background: none;
  border: none;
  color: var(--ice);
  font-size: 12px;
  cursor: pointer;
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: rgba(255, 106, 26, 0.28); }
.card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.bio-text { font-size: 13.5px; line-height: 1.65; color: var(--text-dim); font-weight: 300; }

/* 鐪侀挶瀵规瘮 / 瀹夊叏鏉?*/
.savings-block { margin-bottom: 28px; }
.savings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  line-height: 1.45;
}
.savings-row:last-child { border-bottom: none; }
.savings-bad { color: var(--text-dim); }
.savings-good { color: var(--text); font-weight: 500; }
.savings-bad::before { content: "鏁ｆ壘 路 "; color: var(--danger); font-size: 10px; letter-spacing: 0.06em; }
.savings-good::before { content: "骞冲彴 路 "; color: var(--ice); font-size: 10px; letter-spacing: 0.06em; }
.trust-list { list-style: none; padding: 0; margin: 0; }
.trust-list li {
  padding: 8px 0 8px 14px;
  border-left: 2px solid rgba(31, 110, 106, 0.45);
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.form-hint { font-size: 12px; color: var(--text-dim); line-height: 1.5; font-weight: 300; }

.artist-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.artist-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.artist-card:hover { transform: translateY(-2px); border-color: rgba(255, 106, 26, 0.35); }
.artist-card:active { transform: scale(0.98); }
.artist-card img { width: 100%; height: 120px; object-fit: cover; background: #0e1218; }
.artist-card .body, .artist-card .meta { padding: 10px; }
.artist-card .name { font-weight: 700; font-size: 14px; font-family: var(--font-display); }
.artist-card .price { color: var(--ice); font-size: 12px; margin-top: 4px; font-weight: 700; }
.artist-card .meta { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

.artist-row {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.artist-row:hover { transform: translateY(-1px); border-color: rgba(255, 106, 26, 0.25); }
.artist-row .cover {
  width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; background: #0e1218; flex-shrink: 0;
  border: 1px solid var(--border);
}
.artist-row .info { flex: 1; min-width: 0; }
.artist-row .name-row { display: flex; align-items: center; gap: 8px; }
.artist-row .name { font-weight: 700; font-size: 15px; font-family: var(--font-display); }
.artist-row .bio {
  font-size: 12px; color: var(--text-dim); margin: 4px 0 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 300;
}
.artist-row .bottom-row { display: flex; justify-content: space-between; align-items: center; }

.level-badge, .mini-tag, .rating-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
}
.level-badge { color: var(--brand); border-color: rgba(255, 106, 26, 0.35); }
.mini-tag.on { color: var(--trust); border-color: rgba(31, 110, 106, 0.4); }
.mini-tag-brand {
  background: var(--brand-soft) !important;
  color: #b34700 !important;
  border: none !important;
}
.mini-tag-trust {
  background: rgba(31, 110, 106, 0.12) !important;
  color: var(--trust) !important;
  border: none !important;
}
.mini-tag-warn {
  background: rgba(196, 122, 18, 0.12) !important;
  color: #8a5a10 !important;
  border: none !important;
}
/* ---------- 找乐子（橘线单行文字段）---------- */
.fun-strip {
  margin: 0 0 16px;
  padding: 4px 0 10px;
  background: transparent;
  border: none;
}
.fun-strip.is-sticky {
  position: sticky;
  top: var(--topbar-h);
  z-index: 12;
  margin: 0 -4px 12px;
  padding: 8px 4px 10px;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.fun-strip-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.fun-strip-sub { display: none; }
.fun-strip-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.fun-strip-row::-webkit-scrollbar { display: none; }
.fun-seg {
  flex: 0 0 auto;
  padding: 6px 0 8px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 transparent;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}
.fun-seg:hover { color: var(--ink); }
.fun-seg.is-on {
  color: var(--brand);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--brand);
}

/* ---------- 我有私人局 ---------- */
.host-needs {
  margin: 8px 0 24px;
  padding: 4px 0 0;
}
.host-needs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.host-need-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 14px 12px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.host-need-link:hover {
  border-color: rgba(255, 106, 26, 0.35);
}
.host-need-link.is-on {
  border-color: rgba(255, 106, 26, 0.45);
  box-shadow: inset 0 -2px 0 var(--brand);
}
.host-need-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.host-need-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}
.aud-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0 0 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.aud-rail-primary {
  gap: 10px;
  padding: 4px 0 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.aud-rail::-webkit-scrollbar { display: none; }
.page-mast-plain {
  padding: 8px 0 16px;
}
.page-mast-plain .page-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brand);
  font-weight: 600;
}
.page-mast-plain .page-display {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-mast-plain .page-lead {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.home-stage.home-audience {
  background: var(--bg);
  padding: 8px 18px 28px;
}
.home-stage.home-shelf {
  background: var(--bg);
  padding: 4px 18px 28px;
  max-width: 720px;
  margin: 0 auto;
}
.home-intro-compact {
  margin: 0 0 12px;
}
.home-intro-compact .hero-slogan {
  font-size: 24px;
}
.home-intro-compact .hero-tagline {
  font-size: 13px;
  max-width: 36em;
}
.shelf-chip-rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 0 14px;
  padding: 2px 0 6px;
}
.shelf-chip-rail::-webkit-scrollbar { display: none; }
.shelf-chip {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dim);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
}
.shelf-chip.is-on {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft, rgba(255, 106, 26, 0.12));
  font-weight: 650;
}
.shelf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .shelf-grid {
    grid-template-columns: 1fr 1fr;
  }
  .shelf-grid .party-cover-card {
    margin-bottom: 0 !important;
  }
}
.home-cta-foot {
  margin-top: 18px;
}
.taste-sheet {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(18, 16, 14, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  pointer-events: auto;
}
.taste-sheet-card {
  width: min(440px, 100%);
  background: #fff;
  border-radius: 18px 18px 12px 12px;
  padding: 20px 18px 16px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.taste-sheet-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.taste-pick-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}
.taste-pick {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  color: var(--ink);
}
.taste-pick.is-on {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft, rgba(255, 106, 26, 0.12));
  font-weight: 650;
}
.taste-sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}
.home-intro {
  margin: 4px 0 18px;
}
.home-intro .hero-kicker-line {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
}
.home-intro .hero-slogan {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.home-intro .hero-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 28em;
}
.audience-hub { margin-bottom: 22px; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.audience-card:active { transform: scale(0.98); }
.audience-card:hover { border-color: var(--brand); }
.audience-card-label {
  font-size: 16px;
  font-weight: 750;
  color: var(--ink);
}
.audience-card-go {
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
}
.host-tools-fold {
  padding: 12px 14px;
}
.host-tools-fold > summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--text-dim);
  list-style: none;
}
.host-tools-fold > summary::-webkit-details-marker { display: none; }
.host-tools-fold[open] > summary { margin-bottom: 8px; color: var(--ink); }
.menu-item-primary span:first-child {
  color: var(--brand);
  font-weight: 700;
}
.card-host-cta { border-color: rgba(255, 106, 26, 0.35); }
.aud-chip {
  flex: 0 0 auto;
  font-size: 13px;
  padding: 4px 0 6px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  box-shadow: inset 0 -2px 0 transparent;
}
.aud-chip.is-on {
  color: var(--brand);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--brand);
}
.empty-quiet {
  padding: 18px 4px 8px;
}
.empty-quiet-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---------- Detail ---------- */
.detail-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  min-height: 200px;
  background: #0e1218;
  border: 1px solid var(--border);
}
.detail-hero img { width: 100%; height: 220px; object-fit: cover; }
.detail-hero .overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(transparent, rgba(10, 12, 16, 0.94));
}
.detail-hero .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.detail-price-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  border: 1px solid rgba(255, 106, 26, 0.22);
}
.detail-price-bar .price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ice);
}
.detail-price-bar .price small { font-size: 12px; color: var(--text-dim); font-weight: 400; }

.track-item { margin-bottom: 12px; }
.track-title { font-size: 13px; margin-bottom: 6px; }
.track-audio { width: 100%; height: 36px; }
.track-hint { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

/* ---------- Forms / chips / search ---------- */
.form-row { margin-bottom: 12px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.input, textarea.input, select.input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.45;
  font-family: inherit;
  outline: none;
}
.input::placeholder,
textarea.input::placeholder {
  color: #9a948c;
}
.input:focus {
  border-color: rgba(255, 106, 26, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.12);
}

.search-bar { margin-bottom: 12px; }
.chip-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.chip.active {
  color: var(--brand);
  border-color: rgba(255, 106, 26, 0.35);
  background: rgba(255, 106, 26, 0.1);
}

.status-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.status-pill.pending { color: var(--warn); border-color: rgba(201, 179, 122, 0.4); }
.status-pill.progress { color: var(--ice); border-color: rgba(255, 106, 26, 0.28); }
.status-pill.done { color: var(--ok); border-color: rgba(94, 207, 154, 0.4); }
.status-pill.bad { color: var(--danger); border-color: rgba(217, 122, 140, 0.4); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 12px; border-radius: 999px; letter-spacing: 0.02em; }
.btn-primary {
  background: linear-gradient(135deg, #ff7a33 0%, var(--brand) 48%, var(--brand-deep) 100%);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(255, 106, 26, 0.28);
  position: relative;
  overflow: hidden;
}
.btn-primary:active { background: var(--brand-deep); border-color: var(--brand-deep); }
.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.btn-outline {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid transparent;
  font-weight: 500;
}

.btn-hero-primary {
  background: var(--brand);
  color: #ffffff;
  border: 1px solid var(--brand);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 13px;
  padding: 14px 32px;
  box-shadow: none;
  border-radius: 2px;
}
.btn-hero-primary:active { background: var(--brand-deep); }
.btn-hero-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 2px;
}
.btn-hero-outline {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 14px;
  cursor: pointer;
}
.btn-hero-outline:active { background: var(--bg-mid); }

/* ---------- Tabbar (5 max) ---------- */
.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  height: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  background: rgba(245, 245, 243, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.tabbar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding: 6px 1px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.tabbar-item .tab-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.tabbar-item .tab-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tabbar-item.active {
  color: var(--brand);
}
.tabbar-item.active .tab-icon svg {
  stroke: var(--brand);
}

/* ---------- States ---------- */
.loading-state, .empty-state, .error-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-dim);
  font-weight: 300;
}
.empty-state .empty-icon,
.empty-state .icon { font-size: 28px; margin-bottom: 10px; opacity: 0.7; }
.footer-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 8px 0 20px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.sticky-cta {
  position: sticky;
  bottom: calc(var(--tabbar-h) + 8px);
  z-index: 15;
  margin-top: 16px;
}
.sticky-cta .inner {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--tabbar-h) + 24px);
  transform: translateX(-50%) translateY(20px);
  background: #12151a;
  color: #f4f6f8;
  border: 1px solid rgba(255, 106, 26, 0.25);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
  max-width: 86vw;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.my-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.avatar-circle {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  background: rgba(255, 106, 26, 0.1);
  color: var(--ice);
  border: 1px solid rgba(255, 106, 26, 0.25);
}
.my-nickname { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 0.04em; }
.my-uid { font-size: 12px; color: var(--text-dim); margin-top: 2px; font-weight: 300; }
.referral-code-box {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px; border-radius: var(--radius-sm); background: #f0f3f6; border: 1px dashed rgba(255, 106, 26, 0.25);
}
.referral-code-box .code {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; letter-spacing: 0.12em; color: var(--ice);
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.stat-box {
  text-align: center; padding: 12px; border-radius: var(--radius-sm);
  background: var(--bg-mid, #f3f2ef); border: 1px solid var(--border);
}
.stat-box .num { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text); }
.stat-box .label { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

.hall-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding: 22px 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  animation: orangeline-fade 0.28s ease;
}
.hall-card:hover {
  background: transparent;
  opacity: 0.72;
  border-color: var(--border);
  transform: none;
}
.hall-card .hall-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 2px 0 4px;
}
@keyframes orangeline-fade {
  from { opacity: 0.55; }
  to { opacity: 1; }
}
.like-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 12px;
  color: var(--text-dim);
  cursor: pointer;
  flex-shrink: 0;
}

.page-banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  color: var(--text);
}
.page-banner p {
  margin: 0;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}

.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  color: var(--text);
  font-size: 14px;
  width: 100%;
  text-align: left;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .arrow { color: var(--text-dim); font-size: 16px; }
.menu-item:hover { color: var(--ice); }

.order-card .top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.order-card .title { font-weight: 700; font-size: 14px; font-family: var(--font-display); }

.tab-switch {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.tab-switch button {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: inherit;
}
.tab-switch button.active {
  background: rgba(255, 106, 26, 0.12);
  color: var(--ice);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-2px); border-color: rgba(255, 106, 26, 0.35); }
.product-card img { width: 100%; height: 100px; object-fit: cover; background: #0e1218; }
.product-card .body { padding: 10px; }
.product-card .name { font-weight: 700; font-size: 13px; font-family: var(--font-display); }
.product-card .price { color: var(--mint); font-size: 12px; margin-top: 4px; font-weight: 700; }
.order-card { cursor: pointer; }

@media (max-width: 420px) {
  .duo-modules { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}

/* —— M-B/C 详情三级 + 大厅卡 —— */
.party-poster {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.party-l1 {
  padding: 8px 2px 28px;
  margin-bottom: 8px;
  border-bottom: none;
}
.party-cat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 14px;
  font-weight: 400;
}
.party-l1-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.party-l1-time {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.party-price-hero {
  margin: 36px 0 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.party-price-ref {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  text-decoration: line-through;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.party-price-now-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.party-price-now {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.party-price-unit {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.party-price-save {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.party-run {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 4px;
}
.party-run-lbl {
  width: 100%;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.party-run-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.party-run-num span {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
}
.party-run-meta {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.party-deal {
  font-size: 20px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.party-l1-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 38px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.party-actions-slot { margin: 12px 0 8px; }
.party-l2 .party-play {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.party-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.party-fold {
  margin-bottom: 12px;
}
.party-fold > summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 0;
  color: var(--ink);
}
.party-fold > summary::-webkit-details-marker { display: none; }
.party-fold > summary::after {
  content: " ›";
  color: var(--brand);
  font-weight: 800;
}
.party-fold[open] > summary::after { content: " ˅"; }
.party-fold-body { padding-top: 8px; }
.party-host-tools { border-color: rgba(255, 106, 26, 0.22); }

.hall-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.hall-card-main { flex: 1; min-width: 0; }
.hall-card-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.hall-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  align-self: center;
}
.hall-time {
  font-size: 12px;
  color: var(--text-dim);
}
.hall-card-who {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-dim);
}
.hall-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.hall-card-play {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.hall-card-quote {
  margin-top: 4px;
  font-size: 12px;
  color: var(--brand-deep);
}


/* —— 双壳：消费官网 · Swiss Quiet —— */
.hero.home-official {
  margin: 0 0 24px;
  padding: 8px 0 8px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}
.hero.home-official::before,
.hero.home-official::after { content: none; }
.hero-mast {
  margin-bottom: 40px;
}
.hero.home-official .hero-logo,
.hero-mast .hero-logo {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  margin-bottom: 12px;
}
.hero-wordmark {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}
.hero.home-official .hero-brand {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  font-weight: 400;
  text-shadow: none;
}
.hero.home-official .hero-brand-sub { display: none; }
.hero-trust {
  margin: 0 0 16px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  font-weight: 400;
  text-transform: uppercase;
}
.hero.home-official .hero-slogan {
  font-size: clamp(32px, 9vw, 42px);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--ink);
  max-width: 8em;
  letter-spacing: -0.01em;
  font-weight: 300;
}
.hero.home-official .hero-slogan em {
  font-style: normal;
  color: var(--ink);
  border-bottom: none;
}
.hero.home-official .hero-tagline {
  color: var(--text-dim);
  max-width: 22em;
  margin-bottom: 36px;
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
}
.hero.home-official .btn-hero-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: none;
  border-radius: 2px;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  max-width: none;
  font-weight: 500;
}
.hero.home-official .btn-hero-primary:active {
  background: var(--brand-deep);
  opacity: 0.9;
}
.hero-ctas-single { grid-template-columns: 1fr; max-width: none; }
.hero.home-official .hero-ctas { margin-bottom: 24px; }
.rail-official .rail-title {
  font-size: clamp(28px, 7vw, 36px);
  letter-spacing: -0.01em;
  font-weight: 300;
}
.footer-note .footer-open-link {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-top: 10px;
  margin-bottom: 12px;
  border: 0;
  background: none;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-note .footer-open-link:hover { color: var(--brand); }
body.is-open-shell .tabbar { display: none !important; }
body.is-open-shell #view { padding-bottom: 28px; }
.open-shell-hero {
  padding: 8px 2px 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.open-kicker {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}
.open-title {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.open-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
}
.open-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.open-card {
  text-align: left;
  width: 100%;
  padding: 16px 16px 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.open-card:hover,
.open-card:active {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 26, 0.28);
}
.open-card-title { display: block; font-size: 17px; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.open-card-desc { display: block; font-size: 13px; color: var(--text-dim); line-height: 1.4; }
.open-foot-hint { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-dim); }
.home-play {
  margin: 8px 0 40px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}
.home-play-title {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 8px;
}
.home-play ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: play;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.home-play li {
  margin: 0;
  padding: 16px 0 16px 28px;
  position: relative;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.home-play li::before {
  counter-increment: play;
  content: "0" counter(play);
  position: absolute;
  left: 0;
  top: 18px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: inline;
  line-height: 1;
  text-align: left;
}
.party-social-block { margin-top: 10px; }
.party-social-block .ice-list { display: flex; flex-direction: column; gap: 8px; margin: 8px 0; }
.party-social-block .ice-item {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-mid, #f3f2ef);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.media-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  background: #f7f3f0;
  border: 1px solid var(--border);
}
.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 106, 26, 0.28);
  background: linear-gradient(160deg, rgba(199, 190, 179, 0.18) 0%, #fff 62%);
  color: var(--brand);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
}
.open-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.open-steps span:nth-child(even) { color: var(--text-dim); font-weight: 500; }
.hall-who-link {
  color: var(--brand, #FF6A1A);
  text-decoration: none;
  font-weight: 600;
}
.hall-who-link:hover { text-decoration: underline; }
.rating-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.rating-row .score { font-size: 28px; font-weight: 800; color: var(--text); }
.comment-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.comment-item:last-child { border-bottom: 0; }
.moment-card { margin-bottom: 12px; }
.moment-card .moment-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  background: var(--bg-mid);
}
.profile-hero {
  padding: 20px 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.profile-hero .name { font-size: 22px; font-weight: 300; letter-spacing: -0.01em; }
.profile-hero .meta { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
button.linkish {
  border: 0; background: none; color: var(--brand); font-weight: 500; cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 2px;
}

/* —— Swiss Quiet · 杂志清单行 —— */
.hall-card.mag-row,
.hall-card.party-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  align-items: center;
}
.party-row-body { min-width: 0; grid-column: 1; }
.party-row-cat {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.party-row-meta {
  margin: 0;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.party-row-play {
  margin-top: 6px !important;
  font-weight: 300 !important;
  font-size: 12px !important;
  color: var(--text-dim) !important;
}
.party-row-side {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.party-row-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.party-row-price-lbl {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.like-btn {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.page-banner h1 {
  font-size: clamp(28px, 7vw, 36px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.card {
  border-radius: 2px;
  box-shadow: none;
  background: transparent;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.open-card {
  border-radius: 2px;
  border-left: 1px solid var(--border);
  background: transparent;
}
.open-title { font-weight: 300; letter-spacing: -0.01em; }
.open-card-title { font-weight: 400; }
.rail-link {
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-dim);
}
.hall-who-link { color: var(--text-dim); font-weight: 400; }
.tabbar-item.active { font-weight: 500; }

/* —— 局封面卡 —— */
.party-cover-card {
  display: block !important;
  padding: 0 !important;
  margin-bottom: 14px !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff !important;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.party-cover-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  opacity: 1 !important;
}
.party-cover-card::before { display: none !important; }
.party-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #16120f;
  overflow: hidden;
}
.party-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.party-cover-card:hover .party-cover-img { transform: scale(1.04); }
.party-cover-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 106, 26, 0.35), transparent 45%),
    linear-gradient(135deg, #1a1410, #2a2218);
}
.party-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.party-cover-cat {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff7f0;
  background: rgba(18, 16, 14, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
}
.party-cover-price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff8a45, #ff6a1a);
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255, 106, 26, 0.35);
}
.party-cover-body {
  padding: 14px 14px 12px;
}
.party-cover-body .hall-title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
}
.party-cover-body .party-row-meta {
  margin: 0;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}
.party-cover-body .party-row-play {
  margin: 8px 0 0 !important;
  font-size: 12px !important;
  color: var(--text-dim) !important;
}
.party-cover-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.party-cover-go {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}
.party-detail-cover {
  position: relative;
  margin: -8px -22px 18px;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #16120f;
}
.party-detail-cover .party-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.party-detail-cover-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(18, 16, 14, 0.55));
  pointer-events: none;
}

/* ========== Atmosphere UI · 氛围 / 装饰 / 动态按钮 ========== */
@keyframes atmKen {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
@keyframes sheenSweep {
  0%, 55% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  60% { opacity: 1; }
  85%, 100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 8px 22px rgba(255, 106, 26, 0.28), 0 0 0 0 rgba(255, 106, 26, 0.22); }
  50% { box-shadow: 0 12px 28px rgba(255, 106, 26, 0.38), 0 0 0 10px rgba(255, 106, 26, 0); }
}
@keyframes decoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes tabDotIn {
  from { transform: scaleX(0.3); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* ========== Atmosphere · 首页排版：全幅短 hero + 上叠 sheet ========== */
body.is-home-shell {
  background: #1a1612;
}
body.is-home-shell .topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom: none;
  color: #fff7f0;
}
body.is-home-shell .topbar-brand { color: #fff7f0; font-weight: 800; }
body.is-home-shell .topbar-city {
  background: rgba(255, 255, 255, 0.14);
  color: #fff7f0;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
body.is-home-shell .topbar-logo {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}
body.is-home-shell #view {
  max-width: 480px;
  padding: 0 0 calc(var(--tabbar-h) + 28px);
}
body.is-home-shell .tabbar {
  max-width: 480px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 100%;
}

.home-stage {
  position: relative;
  background: var(--night);
}

.hero.home-atm {
  position: relative;
  margin: 0;
  min-height: 42vh;
  max-height: 360px;
  height: min(42vh, 360px);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 0;
  color: #fff7f0;
  background: var(--night);
}
.hero-atm-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-atm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 38%;
  animation: atmKen 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-atm-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.35) 0%, rgba(18, 16, 14, 0.2) 35%, rgba(18, 16, 14, 0.88) 100%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255, 106, 26, 0.2), transparent 60%);
}
.hero-atm-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-atm-deco::before {
  content: "";
  position: absolute;
  right: -36px;
  top: 22%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 14px rgba(255, 106, 26, 0.08);
  animation: decoSpin 48s linear infinite;
}
.hero-atm-deco::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 36%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 106, 26, 0.55);
  box-shadow: 0 0 0 5px rgba(255, 106, 26, 0.08);
  animation: floatSoft 4.5s ease-in-out infinite;
}
.hero-atm-copy {
  position: relative;
  z-index: 1;
  padding: calc(var(--topbar-h) + 28px) 20px 36px;
}
.hero-kicker-line {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 247, 240, 0.72);
  font-weight: 600;
}
.hero.home-atm .hero-slogan {
  color: #fff7f0;
  font-weight: 800;
  font-size: clamp(26px, 7vw, 34px);
  max-width: 11em;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.hero.home-atm .hero-tagline {
  color: rgba(255, 247, 240, 0.78);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  max-width: 22em;
  font-size: 13px;
}

.home-sheet {
  position: relative;
  z-index: 2;
  margin-top: -22px;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  padding: 10px 18px 28px;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.22);
}
.home-sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(26, 20, 16, 0.12);
  margin: 4px auto 16px;
}
.home-cta-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.home-cta-row .btn-live,
.home-cta-row .btn-hero-primary {
  width: 100%;
  justify-content: center;
}
.btn-sheet-sec {
  width: 100%;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.btn-sheet-sec:active { background: var(--bg-mid); }

.home-steps { margin-bottom: 20px; }
.home-steps-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.home-steps-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-steps-head span {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 700;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.step-tile {
  position: relative;
  padding: 14px 10px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 104px;
}
.step-tile::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 106, 26, 0.08);
}
.step-n {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 10px;
}
.step-tile h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.step-tile p {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-dim);
}

.empty-panel {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 106, 26, 0.14), transparent 45%),
    #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.empty-panel-orb {
  position: absolute;
  right: -20px;
  top: -24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 26, 0.25);
  box-shadow: inset 0 0 0 14px rgba(255, 106, 26, 0.06);
  animation: decoSpin 36s linear infinite;
}
.empty-panel h3 {
  position: relative;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}
.empty-panel p {
  position: relative;
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}
.empty-panel-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8px;
}
.empty-panel-actions .btn { width: 100%; }

.hero.home-atm .btn-hero-primary,
.btn-live {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  max-width: none;
  animation: ctaBreath 2.8s ease-in-out infinite;
  background: linear-gradient(135deg, #ff8a45 0%, #ff6a1a 45%, #e55a0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-live::after,
.btn-primary::after,
.btn-hero-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: sheenSweep 2.6s ease-in-out infinite;
  pointer-events: none;
}
.btn-live-label { position: relative; z-index: 1; }

.home-play-deck { display: none; }

.rail-official .rail-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.rail-link {
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
}

.hall-card.mag-row,
.hall-card.party-row {
  position: relative;
  padding: 16px 14px 16px 16px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hall-card.mag-row:hover,
.hall-card.party-row:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(255, 106, 26, 0.28);
  box-shadow: var(--shadow);
}
.hall-card.mag-row::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a45, var(--brand));
}
.hall-card .hall-title { font-weight: 700; font-size: 16px; }
.party-row-price { font-weight: 800; font-size: 15px; }
.party-row-cat { color: var(--brand); font-weight: 600; letter-spacing: 0.08em; }

.page-mast-atm {
  position: relative;
  margin: -24px -22px 18px;
  min-height: 168px;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  color: #fff7f0;
}
.page-atm-media { position: absolute; inset: 0; }
.page-atm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  animation: atmKen 16s ease-in-out infinite alternate;
}
.page-atm-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.25), rgba(18, 16, 14, 0.82));
}
.page-atm-deco::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 0 10px rgba(255, 106, 26, 0.12);
}
.page-mast-copy {
  position: relative;
  z-index: 1;
  padding: 22px 20px 20px;
}
.page-mast-atm .page-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 247, 240, 0.72);
  font-weight: 600;
}
.page-mast-atm .page-display {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff7f0;
}
.page-mast-atm .page-lead {
  margin: 8px 0 0;
  color: rgba(255, 247, 240, 0.78);
  font-size: 13px;
}
.page-mast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.btn-chip {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff7f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(8px);
}

.party-atm { position: relative; overflow: hidden; }
.party-deco-ring {
  position: absolute;
  right: -30px;
  top: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 26, 0.22);
  box-shadow: inset 0 0 0 16px rgba(255, 106, 26, 0.05);
  pointer-events: none;
  animation: decoSpin 40s linear infinite;
}
.party-price-deck {
  position: relative;
  border-radius: 18px;
  padding: 22px 18px;
  background: linear-gradient(160deg, #fff 0%, #fff6ef 100%);
  border: 1px solid rgba(255, 106, 26, 0.18);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.party-price-glow {
  position: absolute;
  right: -20%;
  top: -40%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.16), transparent 65%);
  pointer-events: none;
}
.party-atm .party-l1-title { font-weight: 800; font-size: clamp(26px, 7vw, 34px); }
.party-atm .party-price-now { font-weight: 800; color: var(--ink); }
.party-atm .party-run-num { font-weight: 800; color: var(--brand); }

.tabbar {
  background: rgba(255, 252, 248, 0.94);
  box-shadow: 0 -8px 24px rgba(26, 20, 16, 0.06);
}
.tabbar-item {
  font-size: 10px;
  letter-spacing: 0.02em;
  font-weight: 600;
  position: relative;
}
.tabbar-item.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 16px;
  height: 3px;
  margin-left: -8px;
  border-radius: 999px;
  background: var(--brand);
  animation: tabDotIn 0.22s ease both;
}
.topbar {
  background: rgba(247, 244, 240, 0.88);
}
.topbar-logo {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.topbar-brand { font-weight: 800; letter-spacing: 0.04em; font-size: 15px; }
.topbar-city {
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-radius: 999px;
  padding: 3px 8px;
  font-weight: 700;
}
.open-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.open-title { font-weight: 800; }
.open-card-title { font-weight: 800; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: reduce) {
  .hero-atm-img,
  .page-atm-media img,
  .btn-live,
  .btn-live::after,
  .btn-primary::after,
  .btn-hero-primary::after,
  .hero-atm-deco::before,
  .hero-atm-deco::after,
  .party-deco-ring { animation: none !important; }
}
