/* ============================================================
   GOODJL — 中间竖条内容区 · 两侧留黑 · 香槟金主题
   ============================================================ */

:root {
  --bg-deep: #070605;
  --bg-mid: #0f0c0a;
  --surface: #14110e;
  --surface-hi: #1c1814;
  --border-gold: rgba(212, 175, 99, 0.38);
  --border-soft: rgba(245, 225, 180, 0.12);

  --text: #f7f2ea;
  --text-2: #c9bfb0;
  --text-3: #8a8074;

  --gold-1: #fff4d4;
  --gold-2: #e8c97a;
  --gold-3: #c9a24a;
  --gold-deep: #5c4218;
  --wine-glow: rgba(107, 28, 46, 0.35);

  --grad-gold-btn: linear-gradient(180deg, #fff6dc 0%, #e4c06a 45%, #b8892e 100%);
  --grad-strip-bg:
    radial-gradient(120% 90% at 50% -10%, rgba(232, 201, 122, 0.22), transparent 55%),
    radial-gradient(90% 60% at 100% 30%, rgba(107, 28, 46, 0.16), transparent 50%),
    radial-gradient(70% 50% at 0% 80%, rgba(184, 137, 46, 0.1), transparent 45%);

  --radius: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);

  --good: #4ade80;
  --ok: #fbbf24;
  --bad: #f87171;

  /* 中间竖条最大宽度：手机较窄，PC 加宽 */
  --strip-max: min(100%, 460px);
}

@media (min-width: 768px) {
  :root {
    --strip-max: min(100%, 560px);
  }
}

@media (min-width: 1100px) {
  :root {
    --strip-max: min(100%, 680px);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  min-height: 100%;
}

/* 整页两侧：纯黑留白，不铺金底 */
body {
  font-family:
    'Plus Jakarta Sans',
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  background: #000;
  color: var(--text);
  line-height: 1.5;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

/* 外侧留黑，仅将中间竖条居中 */
.letterbox {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #000;
}

/* 中间内容竖条：洞穴氛围底图 + 暗角与雾感叠层（仅在此竖条内） */
.content-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--strip-max);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 14px 14px 88px;
  background-color: #050403;
  background-image:
    linear-gradient(
      180deg,
      rgba(2, 2, 2, 0.78) 0%,
      rgba(8, 6, 4, 0.52) 32%,
      rgba(5, 4, 3, 0.7) 58%,
      rgba(2, 2, 2, 0.92) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 16%, transparent 84%, rgba(0, 0, 0, 0.5) 100%),
    url('images/atmosphere-cave-bg.webp');
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  box-shadow: 0 0 0 1px rgba(255, 230, 180, 0.06);
}

.content-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
  opacity: 0.5;
  background:
    radial-gradient(100% 55% at 50% 0%, rgba(255, 228, 180, 0.22), transparent 58%),
    radial-gradient(70% 45% at 80% 60%, rgba(90, 30, 24, 0.18), transparent 50%),
    radial-gradient(60% 40% at 15% 70%, rgba(40, 28, 18, 0.25), transparent 55%);
}

.content-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.content-strip > * {
  position: relative;
  z-index: 1;
}

/* ========== 顶栏 ========== */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  transition: opacity 0.15s ease;
}
.brand:hover {
  opacity: 0.88;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* Premium SERVICE capsule — gold bezel, matte black well, metallic type */
.service-pill {
  display: inline-flex;
  flex-shrink: 0;
  padding: 2px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: linear-gradient(
    148deg,
    #fffcef 0%,
    #f2d78c 12%,
    #c9a227 28%,
    #6e5218 48%,
    #e8c97a 62%,
    #8a6a24 78%,
    #fff6dc 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.75),
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 3px 12px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(201, 162, 74, 0.1);
  transition:
    transform 0.16s ease,
    filter 0.16s ease,
    box-shadow 0.16s ease;
}
.service-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.75),
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(232, 201, 122, 0.14);
}
.service-pill:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.service-pill-body {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px 4px 6px;
  border-radius: inherit;
  background: linear-gradient(180deg, #161616 0%, #0a0a0a 48%, #030303 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -6px 14px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(0, 0, 0, 0.65);
}

.service-pill-icon-wrap {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.75));
}
.service-pill-headset {
  display: block;
  width: 100%;
  height: 100%;
}

.service-pill-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
}

.service-pill-title {
  font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff9e8 0%, #f0d78c 38%, #b8892e 72%, #6b5420 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #e8c97a;
  text-shadow: 0 0 18px rgba(232, 201, 122, 0.25);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .service-pill-title {
    color: transparent;
  }
}

.service-pill-sub {
  margin-top: 2px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 7.5px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #c9a24a;
  opacity: 0.92;
}

/* ========== Banner — 细金边画框（低调不抢图） ========== */
.hero-section {
  position: relative;
  margin-bottom: 12px;
  padding: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(148deg, #f8efd8 0%, #d8b86a 35%, #7a6228 52%, #c9a24a 72%, #faf3e0 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 4px 18px rgba(0, 0, 0, 0.38),
    0 0 16px rgba(201, 162, 74, 0.07);
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 0 14px rgba(232, 201, 122, 0.04) inset,
    0 0 0 1px rgba(0, 0, 0, 0.22) inset;
}
.hero-banner {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 1px);
}

/* ========== 广播条 ========== */
.broadcast-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(90deg, rgba(20, 16, 12, 0.95), rgba(12, 10, 8, 0.98));
  overflow: hidden;
}
.broadcast-ico {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(232, 201, 122, 0.35));
}
.broadcast-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  /* 不用 mask-image：iOS Safari 常与 transform 动画不同步，导致要交互后才滚动 */
}
.broadcast-marquee::before,
.broadcast-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16px;
  z-index: 2;
  pointer-events: none;
}
.broadcast-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgb(16, 13, 10), transparent);
}
.broadcast-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgb(12, 10, 8), transparent);
}

.broadcast-track {
  display: inline-flex;
  width: max-content;
  flex-wrap: nowrap;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: broadcast-marquee 28s linear infinite;
  animation: broadcast-marquee 28s linear infinite;
}
.broadcast-track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.broadcast-item {
  padding-right: 3rem;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
}

@-webkit-keyframes broadcast-marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes broadcast-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ========== 区块标题 ========== */
.section-block {
  margin-bottom: 20px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.section-head-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.section-trophy {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(232, 201, 122, 0.25));
}
.section-title {
  font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-shadow: 0 0 24px rgba(232, 201, 122, 0.2);
  white-space: nowrap;
}

.section-count {
  font-size: 11px;
  color: var(--text-3);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.2);
  font-variant-numeric: tabular-nums;
}

.section-refresh {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
  background: rgba(20, 17, 14, 0.9);
  color: var(--gold-2);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}
.section-refresh:hover {
  background: var(--surface-hi);
}
.section-refresh svg {
  width: 18px;
  height: 18px;
}
.section-refresh.spinning svg {
  animation: spin-refresh 0.85s linear infinite;
}
.section-refresh:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
@keyframes spin-refresh {
  to {
    transform: rotate(360deg);
  }
}

/* ========== 线路卡片（与 Banner 同系圆角 + 测速） ========== */
.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 8px;
}

.route-card {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-height: 76px;
  padding: 12px 14px 12px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background: linear-gradient(165deg, rgba(28, 24, 20, 0.96), rgba(10, 8, 6, 0.98));
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
  outline: none;
}
.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(232, 201, 122, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.route-card:focus-visible {
  box-shadow: 0 0 0 2px var(--wine-glow);
}

.route-card-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0806;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.45);
}
.route-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-card-thumb-fallback {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(145deg, rgba(90, 64, 28, 0.85), rgba(20, 16, 12, 0.95));
}

.route-card-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 2px 0;
}

.route-card-host {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-card-speed {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 12px;
  color: var(--text-2);
}

.route-card-ms {
  font-family: ui-monospace, 'SFMono-Regular', 'Menlo', monospace;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold-2);
}
.route-card-ms-unit {
  font-family: ui-monospace, 'SFMono-Regular', 'Menlo', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  margin-left: 1px;
}

.route-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.route-card-chip .route-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good, #4ade80);
  flex-shrink: 0;
}
.route-card-chip[data-q='testing'] .route-chip-dot {
  background: #fff;
  animation: chip-blink 1s steps(2) infinite;
}
.route-card-chip[data-q='slow'] .route-chip-dot {
  background: var(--ok, #fbbf24);
}
.route-card-chip[data-q='offline'] .route-chip-dot {
  background: var(--bad, #f87171);
}
.route-card-chip[data-q='excellent'] .route-chip-dot,
.route-card-chip[data-q='good'] .route-chip-dot {
  background: var(--good, #4ade80);
}
@keyframes chip-blink {
  50% {
    opacity: 0.25;
  }
}

.route-card .visit-btn {
  align-self: center;
  min-height: 40px;
  height: auto;
  padding: 0 16px;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 246, 220, 0.35);
  background: var(--grad-gold-btn);
  color: #1f1608;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.12s ease;
}
.visit-btn:hover {
  transform: scale(1.03);
}
.visit-btn svg {
  width: 12px;
  height: 12px;
  opacity: 0.85;
}

/* ========== 页脚 ========== */
.site-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: var(--text-3);
  font-size: 12px;
}
.footer-brand {
  color: var(--text-2);
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
}
.footer-nav a {
  color: var(--text-3);
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--gold-2);
}

/* ========== 启动页（纯 CSS，低开销：transform + opacity） ========== */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.35s ease;
}

.loading-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 38% at 50% 38%, rgba(232, 201, 122, 0.14), transparent 70%);
  opacity: 0.85;
  animation: loading-breathe 4.2s ease-in-out infinite;
}

@keyframes loading-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

.loading-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
}

.loading-stage {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  flex-shrink: 0;
}

.loading-emblem {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  height: 100%;
}

.loading-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 74, 0.12);
  border-top-color: rgba(232, 201, 122, 0.95);
  border-right-color: rgba(232, 201, 122, 0.35);
  box-shadow: 0 0 20px rgba(201, 162, 74, 0.08);
  animation: loading-spin 3.2s linear infinite;
  will-change: transform;
}

.loading-orbit--delay {
  inset: 12px;
  border-color: rgba(201, 162, 74, 0.1);
  border-bottom-color: rgba(232, 201, 122, 0.75);
  border-left-color: rgba(232, 201, 122, 0.25);
  animation-duration: 2.1s;
  animation-direction: reverse;
  opacity: 0.85;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

/* 字标：不要做成可点击按钮的块面，仅用字重与金属渐变字 */
.loading-wordmark {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: 'Oswald', 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 4vw, 1.42rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-indent: 0.32em;
  line-height: 1.2;
  background: linear-gradient(185deg, #fffaf0 0%, #f0d78c 42%, #b8892e 78%, #6b4f1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: rgba(232, 201, 122, 0.92);
  animation: loading-word-breathe 3.6s ease-in-out infinite;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .loading-wordmark {
    color: transparent;
  }
}

@keyframes loading-word-breathe {
  0%,
  100% {
    opacity: 0.78;
    filter: drop-shadow(0 0 10px rgba(201, 162, 74, 0.2));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 22px rgba(232, 201, 122, 0.28));
  }
}

.loading-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.loading-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a24a;
  opacity: 0.35;
  animation: loading-dot 1.45s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.22s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.44s;
}

@keyframes loading-dot {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
  }
}

.loading-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-overlay.hidden .loading-orbit,
.loading-overlay.hidden .loading-dots span,
.loading-overlay.hidden .loading-wordmark,
.loading-overlay.hidden::before {
  animation: none !important;
}

/* ========== 通知 ========== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  left: 20px;
  max-width: var(--strip-max);
  margin: 0 auto;
  background: var(--surface-hi);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 13.5px;
  z-index: 10000;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

@media (max-width: 640px) {
  .content-strip {
    padding: 12px 12px 80px;
  }
  .brand-logo {
    height: 34px;
  }
  .service-pill-body {
    padding: 4px 10px 4px 5px;
    gap: 6px;
  }
  .service-pill-title {
    font-size: 11px;
    letter-spacing: 0.09em;
  }
  .service-pill-sub {
    font-size: 7px;
    letter-spacing: 0.05em;
  }
  .service-pill-icon-wrap {
    width: 20px;
    height: 20px;
  }
  .route-card {
    min-height: 72px;
    padding: 10px 12px 10px 10px;
    gap: 12px;
  }
  .route-card-thumb {
    width: 50px;
    height: 50px;
  }
  .route-card-host {
    font-size: 13px;
  }
  .route-card-ms {
    font-size: 12px;
  }

  .broadcast-item {
    font-size: 11px;
    padding-right: 2.5rem;
  }
  .broadcast-ico {
    width: 22px;
    height: 22px;
  }
  .broadcast-marquee::before,
  .broadcast-marquee::after {
    width: 12px;
  }

  .loading-stage {
    width: 112px;
    height: 112px;
  }
  .loading-wordmark {
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    letter-spacing: 0.26em;
    text-indent: 0.26em;
  }
  .loading-content {
    gap: 12px;
    padding: 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .broadcast-track {
    -webkit-animation: none !important;
    animation: none !important;
    white-space: normal;
    flex-wrap: wrap;
    transform: none !important;
    -webkit-transform: none !important;
  }

  .loading-overlay::before {
    opacity: 0.75 !important;
    transform: none !important;
  }
  .loading-orbit {
    opacity: 0.65 !important;
    transform: rotate(42deg) !important;
  }
  .loading-orbit--delay {
    transform: rotate(-28deg) !important;
  }
  .loading-dots span {
    opacity: 0.75 !important;
    transform: none !important;
  }
  .loading-wordmark {
    opacity: 0.92 !important;
    filter: none !important;
    transform: none !important;
  }
}
