/* =========================================================================
   周四羽毛球活动接龙系统 · Apple (iOS / macOS) 风格界面
   - 系统字体 SF Pro / 苹方, 分组卡片, 毛玻璃导航栏, 分段控件
   - 移动端优先, 适配企业微信内置浏览器与 iPhone 安全区域
   - 支持深色模式 (prefers-color-scheme)
   - 无内联样式 / 脚本, 兼容严格 CSP
   ========================================================================= */

:root {
  /* 系统色 (iOS 系统蓝等) */
  --blue: #007aff;
  --blue-press: #0062cc;
  --green: #34c759;
  --red: #ff3b30;
  --orange: #ff9500;
  --gray: #8e8e93;

  /* 语义色 */
  --bg: #f2f2f7;
  --bg-elevated: #ffffff;
  --card: #ffffff;
  --label: #1c1c1e;
  --label-2: rgba(60, 60, 67, .62);
  --label-3: rgba(60, 60, 67, .32);
  --separator: rgba(60, 60, 67, .18);
  --fill: rgba(118, 118, 128, .12);
  --fill-2: rgba(118, 118, 128, .08);
  --nav-bg: rgba(249, 249, 249, .82);
  --tint-blue: rgba(0, 122, 255, .12);
  --tint-green: rgba(52, 199, 89, .15);
  --tint-red: rgba(255, 59, 48, .12);
  --tint-orange: rgba(255, 149, 0, .15);

  --radius-lg: 16px;
  --radius: 12px;
  --radius-sm: 9px;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 8px rgba(0, 0, 0, .04);
  --shadow-2: 0 8px 30px rgba(0, 0, 0, .08);
  --wrap: 760px;
  --hpad: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --blue: #0a84ff;
    --blue-press: #0a6fd6;
    --green: #30d158;
    --red: #ff453a;
    --orange: #ff9f0a;

    --bg: #000000;
    --bg-elevated: #1c1c1e;
    --card: #1c1c1e;
    --label: #ffffff;
    --label-2: rgba(235, 235, 245, .6);
    --label-3: rgba(235, 235, 245, .3);
    --separator: rgba(84, 84, 88, .5);
    --fill: rgba(120, 120, 128, .36);
    --fill-2: rgba(120, 120, 128, .24);
    --nav-bg: rgba(28, 28, 30, .8);
    --tint-blue: rgba(10, 132, 255, .2);
    --tint-green: rgba(48, 209, 88, .2);
    --tint-red: rgba(255, 69, 58, .2);
    --tint-orange: rgba(255, 159, 10, .2);
    --shadow-1: none;
    --shadow-2: none;
  }
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--label);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro SC",
    "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.02em; }
p { margin: 0 0 .5em; }
ul, ol { margin: 0; padding: 0; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .86em;
  background: var(--fill);
  border-radius: 6px;
  padding: 1px 6px;
  word-break: break-all;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: max(var(--hpad), env(safe-area-inset-left));
  padding-right: max(var(--hpad), env(safe-area-inset-right));
}

.page-admin .wrap { max-width: 1180px; }

/* ------------------------------------------------------------- 顶部导航栏 */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: .5px solid var(--separator);
  padding-top: env(safe-area-inset-top);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--label);
  font-weight: 600;
  font-size: 16px;
  min-width: 0;
}

.navbar-logo { font-size: 20px; line-height: 1; }
.navbar-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -.02em;
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  background: var(--fill);
  border-radius: 9px;
  flex: 0 0 auto;
}

.pill-nav a {
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--label-2);
  transition: background .18s ease, color .18s ease;
}

.pill-nav a.active {
  background: var(--bg-elevated);
  color: var(--label);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

/* ------------------------------------------------------------------- 布局 */
.main {
  padding-top: 16px;
  padding-bottom: 8px;
}

.group {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  margin-bottom: 16px;
  overflow: hidden;
}

.group-body { padding: 16px; }

.group-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.group > .group-title {
  padding: 16px 16px 8px;
}

.group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 16px 8px;
}

.group-head .group-title { padding: 0; }

.group-note {
  margin: 0;
  padding: 4px 16px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--label-2);
}

.group-danger { box-shadow: var(--shadow-1), inset 0 0 0 1px var(--tint-red); }
.group-danger .group-title { color: var(--red); }

.muted { color: var(--label-2); }
.small { font-size: 14px; }
.center { text-align: center; }
.center-row { justify-content: center; }
.nowrap { white-space: nowrap; }
.path { font-size: 12.5px; font-weight: 500; word-break: break-all; }
.empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--label-2);
  font-size: 15px;
}

/* --------------------------------------------------------------- 首屏卡片 */
.hero {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 18px 16px 16px;
  margin-bottom: 16px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--tint-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.hero-week {
  font-size: 13px;
  font-weight: 600;
  color: var(--label-2);
}

.hero-title {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-rows { display: flex; flex-direction: column; }

.hero-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: .5px solid var(--separator);
  font-size: 15px;
}

.hero-key { color: var(--label-2); flex: 0 0 auto; }
.hero-val { font-weight: 600; text-align: right; }
.hero-sub { color: var(--label-2); font-weight: 400; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: var(--radius);
  background: var(--fill-2);
}

.hero-stat strong { font-size: 22px; font-weight: 700; letter-spacing: -.03em; }
.hero-stat span { font-size: 12px; color: var(--label-2); }
.hero-stat-yes { background: var(--tint-green); }
.hero-stat-yes strong { color: var(--green); }
.hero-stat-no { background: var(--tint-red); }
.hero-stat-no strong { color: var(--red); }

/* --------------------------------------------------------------- 表单样式 */
.stack { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 16px;
  border-top: .5px solid var(--separator);
}

.form-row:first-child,
.form-row:first-of-type { border-top: none; }

.form-row-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px 16px;
}

.form-label {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 500;
  color: var(--label);
}

.form-optional { color: var(--label-2); font-weight: 400; font-size: 14px; }

.ios-input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  font-size: 16px;
  font-family: inherit;
  color: var(--label);
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: right;
  appearance: none;
}

.form-row-stack .ios-input,
.field .ios-input {
  text-align: left;
  background: var(--fill-2);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
}

textarea.ios-input {
  text-align: left;
  min-height: 88px;
  resize: vertical;
  line-height: 1.5;
  background: var(--fill-2);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
}

.ios-input::placeholder { color: var(--label-3); }

.ios-input:focus {
  outline: none;
}

.field .ios-input:focus,
.form-row-stack .ios-input:focus,
textarea.ios-input:focus {
  box-shadow: 0 0 0 3.5px var(--tint-blue);
}

select.ios-input {
  text-align: left;
  background: var(--fill-2);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  appearance: none;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field.grow { flex: 1 1 240px; }
.field label { font-size: 14px; font-weight: 600; color: var(--label-2); }

.form-row.is-error { background: var(--tint-red); }

.hint {
  margin: 0;
  font-size: 13px;
  color: var(--label-2);
  line-height: 1.4;
}

.counter { float: right; font-variant-numeric: tabular-nums; }

.form-actions { padding: 4px 16px 16px; display: flex; flex-direction: column; gap: 8px; }

/* ----------------------------------------------------------- 分段控件 */
.segmented {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: var(--fill);
  border-radius: var(--radius-sm);
}

.segmented-item { flex: 1 1 0; position: relative; }

.segmented-item input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.segmented-item span {
  display: block;
  padding: 8px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--label-2);
  border-radius: 7px;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
  pointer-events: none;
}

.segmented-item input:checked + span {
  background: var(--bg-elevated);
  color: var(--label);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.segmented-item input:focus-visible + span { box-shadow: 0 0 0 3.5px var(--tint-blue); }

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--fill-2);
  border-radius: var(--radius);
  font-size: 16px;
  cursor: pointer;
}

.check-row input { width: 22px; height: 22px; accent-color: var(--blue); flex: 0 0 auto; }

/* ------------------------------------------------------------------- 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.2;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity .15s ease, background .15s ease, transform .06s ease;
}

.btn:active { transform: scale(.985); opacity: .85; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-secondary { background: var(--tint-blue); color: var(--blue); }
.btn-ghost { background: var(--fill); color: var(--label); }
.btn-danger { background: var(--red); color: #fff; }
.btn-block { width: 100%; }

.btn-small { min-height: 36px; padding: 7px 14px; font-size: 15px; border-radius: 10px; }
.btn-tiny { min-height: 30px; padding: 5px 12px; font-size: 14px; border-radius: 8px; }
.btn.disabled { opacity: .4; pointer-events: none; }

.btn-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.wrap-row { flex-wrap: wrap; }

.link { font-size: 15px; font-weight: 500; }
.link-danger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--red);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.inline-form { display: inline; margin-left: 10px; }

/* --------------------------------------------------------------- 提示条 */
.flash-area { margin-bottom: 16px; }

.flash {
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  background: var(--card);
  box-shadow: var(--shadow-1);
  border-left: 4px solid var(--blue);
}

.flash-success { border-left-color: var(--green); color: var(--green); }
.flash-error { border-left-color: var(--red); color: var(--red); }
.flash-warning { border-left-color: var(--orange); color: var(--orange); }
.flash-info, .flash-message { border-left-color: var(--blue); color: var(--blue); }

.alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--tint-blue);
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------- 名单列表 */
.list { list-style: none; }

.list-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-top: .5px solid var(--separator);
}

.list-row:first-child { border-top: none; }
.list-plain .list-row { padding-left: 16px; }

.list-no {
  flex: 0 0 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  line-height: 1.5;
}

.list-main { flex: 1 1 auto; min-width: 0; }

.list-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.list-name { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }

.list-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
  font-size: 13.5px;
  color: var(--label-2);
}

.list-dept { font-weight: 500; }
.list-dot { color: var(--label-3); }

.list-remark {
  margin: 8px 0 0;
  padding: 8px 10px;
  background: var(--fill-2);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--label-2);
  white-space: pre-wrap;
  word-break: break-word;
}

.list-row-link { padding: 0; }
.list-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  color: var(--label);
}
.list-link:active { background: var(--fill-2); }
.chevron { color: var(--label-3); font-size: 20px; line-height: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--fill);
  color: var(--label-2);
  white-space: nowrap;
}

.badge-yes { background: var(--tint-green); color: var(--green); }
.badge-no { background: var(--tint-red); color: var(--red); }
.badge-warn { background: var(--tint-orange); color: var(--orange); }
.badge-current { background: var(--tint-blue); color: var(--blue); }
.badge-muted { background: var(--fill); color: var(--label-2); }

.hint-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--label-2);
}
.hint-list li { position: relative; padding-left: 16px; }
.hint-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--label-3);
}

/* --------------------------------------------------------------- 提醒页面 */
.notice-gate { display: flex; flex-direction: column; gap: 14px; }
.gate-title { font-size: 24px; line-height: 1.25; }

.login-body { display: flex; flex-direction: column; gap: 12px; padding: 20px 16px; }

.rule-list {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15.5px;
  color: var(--label);
}

.rule-list li { color: var(--label-2); }
.rule-list li::marker { color: var(--blue); font-weight: 700; }

/* --------------------------------------------------------------- 表格 */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 680px;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: .5px solid var(--separator);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  font-size: 13px;
  font-weight: 600;
  color: var(--label-2);
  background: var(--fill-2);
  white-space: nowrap;
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:active { background: var(--fill-2); }
.content-cell { min-width: 200px; white-space: pre-wrap; word-break: break-word; color: var(--label-2); }

/* ------------------------------------------------------------- 管理后台 */
.tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 8px 10px;
  margin-bottom: 16px;
}

.tabs-scroll {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: var(--fill);
  border-radius: 9px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tabs-scroll a {
  padding: 6px 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--label-2);
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}

.tabs-scroll a.active {
  background: var(--bg-elevated);
  color: var(--label);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.tabs-user { display: flex; align-items: center; gap: 6px; }
.tabs-who { font-size: 14px; color: var(--label-2); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.stat-grid-compact { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

.stat-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-card-primary { box-shadow: var(--shadow-1), inset 0 0 0 1.5px var(--tint-blue); }
.stat-label { font-size: 13px; color: var(--label-2); font-weight: 500; }
.stat-value { font-size: 26px; font-weight: 700; letter-spacing: -.03em; }
.stat-value-yes { color: var(--green); }
.stat-value-no { color: var(--red); }
.stat-sub { font-size: 13px; color: var(--label-2); }

.kv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0 16px;
  padding: 4px 16px 16px;
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: .5px solid var(--separator);
  font-size: 14.5px;
}

.kv span { color: var(--label-2); flex: 0 0 auto; }
.kv strong { font-weight: 600; text-align: right; word-break: break-word; }

.check-list {
  list-style: none;
  padding: 4px 16px 0;
  display: flex;
  flex-direction: column;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: .5px solid var(--separator);
  font-size: 15px;
}

.check-item:first-child { border-top: none; }
.check-label { color: var(--label-2); }

.timeline { list-style: none; padding: 4px 16px 16px; }

.timeline li {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 0;
  border-top: .5px solid var(--separator);
  font-size: 14px;
}

.timeline li:first-child { border-top: none; }
.timeline-time { color: var(--label-2); font-variant-numeric: tabular-nums; flex: 0 0 auto; }
.timeline-text { color: var(--label); }
.timeline-text em { color: var(--label-2); font-style: normal; }

.search-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  border-top: .5px solid var(--separator);
}

.page-info { font-size: 14px; color: var(--label-2); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------- 错误页 */
.error-body { text-align: center; padding: 32px 18px; }
.error-code { font-size: 48px; font-weight: 700; color: var(--label-3); margin: 0; line-height: 1; letter-spacing: -.04em; }
.error-title { font-size: 22px; margin: 10px 0; }
.error-message { color: var(--label-2); font-size: 15.5px; }
.error-body .btn-row { justify-content: center; margin-top: 18px; }

/* ----------------------------------------------------------------- 页脚 */
.app-footer { padding: 8px 0 28px; }

.privacy {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 16px;
  font-size: 14.5px;
  color: var(--label-2);
}

.privacy-title { font-size: 16px; color: var(--label); margin-bottom: 8px; font-weight: 600; }
.privacy-strong { font-weight: 600; color: var(--label); margin-bottom: 8px; }

.privacy-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.privacy-tags li {
  background: var(--tint-red);
  color: var(--red);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 12.5px;
  font-weight: 500;
}

.privacy-note { margin: 0; font-size: 13px; }

.footer-meta {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--label-3);
}

/* --------------------------------------------------------------- 响应式 */
@media (max-width: 430px) {
  :root { --hpad: 14px; }
  body { font-size: 16px; }
  .navbar-name { font-size: 15px; }
  .pill-nav a { padding: 5px 9px; font-size: 13.5px; }
  .hero-title { font-size: 24px; }
  .group-title { font-size: 19px; }
  .gate-title { font-size: 21px; }
  .stat-value { font-size: 23px; }
  .btn { min-height: 46px; font-size: 16px; }
  .data-table { min-width: 600px; font-size: 14px; }
  .kv-grid { grid-template-columns: 1fr; }
}

@media (min-width: 820px) {
  .main { padding-top: 24px; }
  .hero { padding: 22px; }
  .hero-title { font-size: 32px; }
}

/* 尊重"减少动态效果"设置 */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
