/* ============================================================
   SquashABC 壁球站 · 主样式
   深色运动风 · 荧光绿点缀 · 顶部导航
   ============================================================ */
:root {
  --bg: #0e1013;
  --bg-2: #14171c;
  --surface: #1a1e25;
  --surface-2: #21262f;
  --line: #2b313c;
  --line-soft: #232830;
  --ink: #eef1f4;
  --ink-2: #b8bfc9;
  --muted: #7d8590;
  --accent: #b8f13c;          /* 荧光绿 */
  --accent-dim: #93c22f;
  --accent-soft: rgba(184, 241, 60, 0.12);
  --amber: #f5c451;
  --red: #f26d6d;
  --blue: #6db3f2;
  --green: #4fd28c;
  --radius: 14px;
  --radius-sm: 8px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ---------- 顶部导航 ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 16, 19, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
  height: 60px; display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; letter-spacing: 0.5px; }
.logo .ball {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #3a4048, #16191d 70%);
  border: 1.5px solid #3d434c; position: relative; flex-shrink: 0;
}
.logo .ball::after {
  content: ''; position: absolute; top: 5px; right: 5px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.logo .en { color: var(--accent); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; margin-left: 2px; }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  padding: 7px 14px; border-radius: 20px; font-size: 13.5px; color: var(--ink-2);
  transition: 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.on { color: #0e1013; background: var(--accent); font-weight: 600; }
.nav-cta {
  padding: 8px 18px; border-radius: 20px; border: 1px solid var(--accent);
  background: transparent; color: var(--accent); font-size: 13px; font-weight: 600;
  transition: 0.15s;
}
.nav-cta:hover { background: var(--accent); color: #0e1013; }
.nav-burger { display: none; background: none; border: 0; color: var(--ink); font-size: 22px; }

/* ---------- 布局 ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 26px 20px 60px; }
.page-head { margin: 8px 0 22px; }
.page-head h1 { font-size: 26px; font-weight: 800; letter-spacing: 0.5px; }
.page-head h1 .en { font-family: var(--mono); font-size: 12px; color: var(--muted); font-weight: 400; margin-left: 10px; letter-spacing: 2px; }
.page-head p { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ---------- 通用组件 ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.chip {
  padding: 6px 14px; border-radius: 18px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink-2); font-size: 12.5px; transition: 0.15s;
}
.chip:hover { border-color: var(--muted); color: var(--ink); }
.chip.on { background: var(--accent); border-color: var(--accent); color: #0e1013; font-weight: 600; }
.chip .n { font-family: var(--mono); font-size: 11px; opacity: 0.7; margin-left: 3px; }

.btn {
  padding: 9px 20px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--surface-2); color: var(--ink); font-size: 13px; transition: 0.15s;
}
.btn:hover { border-color: var(--muted); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #0e1013; font-weight: 700; }
.btn.primary:hover { background: var(--accent-dim); }
.btn.ghost { background: transparent; }
.btn.block { width: 100%; }

.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 9px; border-radius: 4px; font-size: 11px; font-weight: 600;
}
.tag.live { background: rgba(242, 109, 109, 0.15); color: var(--red); }
.tag.open { background: var(--accent-soft); color: var(--accent); }
.tag.soon { background: rgba(109, 179, 242, 0.15); color: var(--blue); }
.tag.done { background: rgba(125, 133, 144, 0.15); color: var(--muted); }
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.tag.live .dot { animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

.badge-ai {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; padding: 1px 7px; border-radius: 3px;
  background: rgba(109, 179, 242, 0.12); color: var(--blue);
  border: 1px dashed rgba(109, 179, 242, 0.4);
  font-family: var(--mono); letter-spacing: 0.5px;
}

.empty { text-align: center; padding: 50px 0; color: var(--muted); font-size: 13px; }

/* ---------- 首页 Hero ---------- */
.hero {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    radial-gradient(ellipse at 80% -20%, rgba(184, 241, 60, 0.16), transparent 55%),
    radial-gradient(ellipse at 10% 110%, rgba(109, 179, 242, 0.10), transparent 50%),
    linear-gradient(140deg, #171b21, #12151a);
  border: 1px solid var(--line-soft);
  padding: 44px 40px; margin-bottom: 26px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none;
}
.hero-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 3px; color: var(--accent); margin-bottom: 12px; }
.hero h2 { font-size: 34px; font-weight: 800; line-height: 1.25; max-width: 620px; }
.hero h2 em { font-style: normal; color: var(--accent); }
.hero p { color: var(--ink-2); margin-top: 12px; max-width: 560px; font-size: 14px; }
.hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats .hs .num { font-family: var(--mono); font-size: 24px; font-weight: 700; color: var(--ink); }
.hero-stats .hs .num i { font-style: normal; color: var(--accent); }
.hero-stats .hs .lbl { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-top: 2px; }

/* ---------- 首页栅格 ---------- */
.home-grid { display: grid; grid-template-columns: 1fr 340px; gap: 22px; align-items: start; }
.side-col { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 80px; }

.widget { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 18px 20px; }
.widget h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; display: flex; justify-content: space-between; align-items: baseline; }
.widget h3 a { font-size: 11.5px; color: var(--accent); font-weight: 400; }
.widget .sub { font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }

.widget-assess {
  background:
    radial-gradient(circle at 85% 15%, rgba(184, 241, 60, 0.2), transparent 50%),
    linear-gradient(150deg, #1c2416, #171b14);
  border-color: rgba(184, 241, 60, 0.25);
}
.widget-assess .lv-strip { display: flex; gap: 4px; margin: 14px 0; }
.widget-assess .lv-strip span {
  flex: 1; height: 34px; border-radius: 5px; background: var(--surface-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; color: var(--muted); line-height: 1.3;
}
.widget-assess .lv-strip span.me { background: var(--accent); color: #0e1013; font-weight: 700; }

.mini-row { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.mini-row:last-child { border-bottom: 0; }
.mini-row .dt {
  width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--surface-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--mono);
}
.mini-row .dt .d { font-size: 15px; font-weight: 700; line-height: 1.1; }
.mini-row .dt .m { font-size: 9px; color: var(--muted); }
.mini-row .bd { flex: 1; min-width: 0; }
.mini-row .bd .t { font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-row .bd .s { font-size: 11px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- 资讯流 ---------- */
.feed-tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--line-soft); margin-bottom: 4px; overflow-x: auto; }
.feed-tabs button {
  padding: 10px 16px; background: none; border: 0; color: var(--muted); font-size: 13.5px;
  border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap;
}
.feed-tabs button:hover { color: var(--ink); }
.feed-tabs button.on { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }

.feed-item {
  display: flex; gap: 18px; padding: 20px 4px; border-bottom: 1px solid var(--line-soft);
  cursor: pointer; transition: 0.15s;
}
.feed-item:hover { background: rgba(255,255,255,0.015); }
.feed-item .fi-bd { flex: 1; min-width: 0; }
.feed-item .fi-meta { display: flex; gap: 10px; align-items: center; font-size: 11.5px; color: var(--muted); margin-bottom: 6px; }
.feed-item .fi-meta .cat { color: var(--accent); font-weight: 600; }
.feed-item h4 { font-size: 16.5px; font-weight: 700; line-height: 1.4; }
.feed-item h4:hover { color: var(--accent); }
.feed-item .fi-sum { font-size: 13px; color: var(--ink-2); margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.feed-item .fi-foot { display: flex; gap: 16px; font-size: 11.5px; color: var(--muted); margin-top: 10px; }
.feed-item .fi-thumb {
  width: 168px; height: 106px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; position: relative; overflow: hidden;
}

/* ---------- 赛事 ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.stat-strip .sc {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 16px 18px; cursor: pointer; transition: 0.15s;
}
.stat-strip .sc:hover { border-color: var(--line); }
.stat-strip .sc.on { border-color: var(--accent); background: var(--accent-soft); }
.stat-strip .sc .k { font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.stat-strip .sc .v { font-family: var(--mono); font-size: 26px; font-weight: 700; margin-top: 4px; }

.event-card { display: flex; gap: 0; margin-bottom: 14px; cursor: pointer; transition: 0.15s; }
.event-card:hover { border-color: var(--line); transform: translateY(-1px); }
.event-card .ec-date {
  width: 92px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--surface-2); border-right: 1px solid var(--line-soft); font-family: var(--mono); padding: 18px 0;
}
.event-card .ec-date .d { font-size: 26px; font-weight: 800; line-height: 1.1; }
.event-card .ec-date .m { font-size: 10.5px; color: var(--muted); letter-spacing: 1px; margin-top: 3px; }
.event-card .ec-bd { flex: 1; padding: 16px 20px; min-width: 0; }
.event-card .ec-top { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.event-card h4 { font-size: 16px; font-weight: 700; }
.event-card .ec-meta { display: flex; gap: 18px; font-size: 12px; color: var(--muted); margin-top: 8px; flex-wrap: wrap; }
.event-card .ec-right {
  width: 150px; flex-shrink: 0; border-left: 1px dashed var(--line-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 12px;
}
.event-card .ec-quota { font-family: var(--mono); font-size: 13px; color: var(--ink-2); }
.event-card .ec-quota b { color: var(--accent); font-size: 16px; }
.quota-bar { width: 100px; height: 5px; border-radius: 3px; background: var(--surface-2); overflow: hidden; }
.quota-bar i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }

.lv-fit { font-size: 11px; color: var(--muted); }
.lv-fit b { color: var(--amber); font-family: var(--mono); }

/* ---------- 球馆 ---------- */
.venue-toolbar { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.search-box {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 9px 14px;
}
.search-box input { flex: 1; background: none; border: 0; outline: 0; color: var(--ink); font-size: 13px; font-family: inherit; }
.search-box input::placeholder { color: var(--muted); }
.sort-group { display: flex; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.sort-group button { padding: 8px 15px; background: var(--surface); border: 0; color: var(--muted); font-size: 12.5px; }
.sort-group button.on { background: var(--surface-2); color: var(--accent); font-weight: 600; }

.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.venue-card { cursor: pointer; transition: 0.18s; display: flex; flex-direction: column; }
.venue-card:hover { transform: translateY(-3px); border-color: var(--line); }
.venue-card .vc-cover {
  height: 130px; display: flex; align-items: center; justify-content: center;
  font-size: 34px; position: relative;
}
.venue-card .vc-cover .vc-rating {
  position: absolute; top: 10px; right: 10px;
  background: rgba(14, 16, 19, 0.75); backdrop-filter: blur(4px);
  padding: 3px 9px; border-radius: 5px; font-size: 12px; font-weight: 700; color: var(--amber);
  font-family: var(--mono);
}
.venue-card .vc-cover .vc-city {
  position: absolute; bottom: 10px; left: 12px;
  font-size: 11px; padding: 2px 8px; border-radius: 4px;
  background: rgba(14, 16, 19, 0.75); color: var(--ink-2);
}
.venue-card .vc-bd { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.venue-card h4 { font-size: 15px; font-weight: 700; }
.venue-card .vc-addr { font-size: 11.5px; color: var(--muted); margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.venue-card .vc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.venue-card .vc-tags span {
  font-size: 10.5px; padding: 2px 8px; border-radius: 4px;
  background: var(--surface-2); color: var(--ink-2);
}
.venue-card .vc-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 12px; font-size: 12px; color: var(--muted);
}
.venue-card .vc-foot .price { font-family: var(--mono); color: var(--accent); font-weight: 700; font-size: 14px; }
.venue-card .vc-foot .price small { color: var(--muted); font-weight: 400; font-size: 10.5px; }

/* ---------- 自评页 ---------- */
.assess-shell { max-width: 720px; margin: 0 auto; }
.assess-intro { padding: 36px; text-align: center; }
.assess-intro .big-ico { font-size: 44px; margin-bottom: 14px; }
.assess-intro h2 { font-size: 24px; font-weight: 800; }
.assess-intro p { color: var(--ink-2); font-size: 13.5px; margin-top: 10px; max-width: 480px; margin-left: auto; margin-right: auto; }
.dim-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 22px 0; }
.dim-pills span {
  padding: 6px 14px; border-radius: 16px; background: var(--surface-2);
  font-size: 12px; color: var(--ink-2); border: 1px solid var(--line-soft);
}
.dim-pills span i { font-style: normal; color: var(--accent); font-family: var(--mono); font-size: 10.5px; margin-left: 4px; }

.q-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.q-progress .track { flex: 1; height: 6px; border-radius: 3px; background: var(--surface-2); overflow: hidden; }
.q-progress .track i { display: block; height: 100%; background: var(--accent); border-radius: 3px; transition: width 0.3s; }
.q-progress .num { font-family: var(--mono); font-size: 12px; color: var(--muted); }

.q-card { padding: 26px 30px; animation: qIn 0.28s ease both; }
@keyframes qIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.q-card .q-dim { font-size: 11px; letter-spacing: 2px; color: var(--accent); font-family: var(--mono); margin-bottom: 8px; }
.q-card .q-text { font-size: 17px; font-weight: 700; line-height: 1.5; }
.q-opts { display: flex; flex-direction: column; gap: 9px; margin-top: 20px; }
.q-opt {
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); color: var(--ink-2); font-size: 13.5px; text-align: left;
  transition: 0.13s; line-height: 1.5;
}
.q-opt:hover { border-color: var(--muted); color: var(--ink); }
.q-opt.on { border-color: var(--accent); background: var(--accent-soft); color: var(--ink); font-weight: 600; }
.q-nav { display: flex; justify-content: space-between; margin-top: 22px; }

/* 结果页 */
.result-head { text-align: center; padding: 32px 24px 24px; }
.result-head .lv-badge {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--mono); font-size: 44px; font-weight: 800; color: var(--accent);
}
.result-head .lv-badge small { font-size: 15px; color: var(--muted); font-weight: 400; }
.result-head .lv-name { font-size: 19px; font-weight: 700; margin-top: 4px; }
.result-head .lv-desc { font-size: 13px; color: var(--ink-2); margin-top: 8px; max-width: 460px; margin-left: auto; margin-right: auto; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line-soft); }
.result-grid > div { padding: 22px; }
.result-grid > div:first-child { border-right: 1px solid var(--line-soft); }
.result-grid h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--ink-2); }
.dim-bars .db { margin-bottom: 12px; }
.dim-bars .db .db-top { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
.dim-bars .db .db-top b { font-family: var(--mono); color: var(--accent); }
.dim-bars .db .track { height: 7px; border-radius: 4px; background: var(--surface-2); overflow: hidden; }
.dim-bars .db .track i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent-dim), var(--accent)); }
.tips-list { border-top: 1px solid var(--line-soft); padding: 22px 26px; }
.tips-list h4 { font-size: 13px; font-weight: 700; margin-bottom: 12px; color: var(--ink-2); }
.tip {
  display: flex; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--surface-2); margin-bottom: 8px; border: 1px solid var(--line-soft);
}
.tip .ic { font-size: 18px; flex-shrink: 0; }
.tip .t { font-size: 13px; font-weight: 700; }
.tip .b { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.lv-table { width: 100%; border-collapse: collapse; font-size: 12px; margin-top: 4px; }
.lv-table th, .lv-table td { padding: 7px 8px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.lv-table th { color: var(--muted); font-weight: 500; font-size: 11px; }
.lv-table tr.me td { background: var(--accent-soft); color: var(--accent); font-weight: 700; }
.result-actions { padding: 20px; display: flex; gap: 10px; justify-content: center; border-top: 1px solid var(--line-soft); }

/* ---------- 弹窗 ---------- */
.modal-mask {
  position: fixed; inset: 0; background: rgba(8, 9, 11, 0.7); backdrop-filter: blur(3px);
  z-index: 200; display: none; align-items: flex-start; justify-content: center;
  padding: 60px 20px; overflow-y: auto;
}
.modal-mask.show { display: flex; }
.modal {
  width: 100%; max-width: 640px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  animation: qIn 0.25s ease both;
}
.modal-head { padding: 20px 24px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.modal-head h3 { font-size: 19px; font-weight: 800; line-height: 1.4; padding-right: 20px; }
.modal-close {
  width: 30px; height: 30px; border-radius: 50%; border: 0; background: var(--surface-2);
  color: var(--muted); font-size: 17px; flex-shrink: 0; line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 16px 24px 24px; }
.modal-body .info-grid { display: grid; grid-template-columns: 88px 1fr; gap: 8px 14px; font-size: 13px; margin: 14px 0; }
.modal-body .info-grid dt { color: var(--muted); }
.modal-body .info-grid dd { color: var(--ink); }
.modal-body .map-ph {
  height: 150px; border-radius: var(--radius-sm); border: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px; gap: 6px; background: var(--surface-2); margin: 14px 0;
}
.modal-body .art-content { font-size: 14px; color: var(--ink-2); line-height: 1.85; }
.modal-body .art-content p { margin-bottom: 12px; }
.modal-foot { padding: 0 24px 22px; display: flex; gap: 10px; }

/* ---------- 页脚 ---------- */
.footer { border-top: 1px solid var(--line-soft); margin-top: 40px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 28px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
}
.footer-inner .links { display: flex; gap: 18px; }
.footer-inner a:hover { color: var(--accent); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink);
  padding: 11px 22px; border-radius: 24px; font-size: 13px; z-index: 300;
  opacity: 0; pointer-events: none; transition: 0.25s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .home-grid { grid-template-columns: 1fr; }
  .side-col { position: static; }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero h2 { font-size: 26px; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    background: var(--bg-2); flex-direction: column; padding: 12px 20px; gap: 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .venue-grid { grid-template-columns: 1fr; }
  .feed-item .fi-thumb { display: none; }
  .event-card .ec-right { display: none; }
  .result-grid { grid-template-columns: 1fr; }
  .result-grid > div:first-child { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .hero { padding: 30px 22px; }
}
