/* ============================================================
   Luna 影视 · 主样式（手机 / 平板 / 桌面 / TV 四端自适应）
   ============================================================ */

:root {
  --bg: #080a11;
  --bg-soft: #0e1220;
  --surface: rgba(255, 255, 255, .045);
  --surface-2: rgba(255, 255, 255, .075);
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #eef1f8;
  --text-dim: #98a0b8;
  --text-mute: #6b7391;
  --brand: #7c5cff;
  --brand-2: #21d4fd;
  --accent: linear-gradient(120deg, #7c5cff 0%, #21d4fd 100%);
  --danger: #ff5d6c;
  --ok: #24d17e;
  --warn: #ffb020;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .55);
  --topbar-h: 64px;
  --gap: 18px;
  --card-w: 168px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 12% -8%, rgba(124, 92, 255, .28), transparent 60%),
    radial-gradient(760px 460px at 92% 4%, rgba(33, 212, 253, .18), transparent 62%),
    radial-gradient(700px 700px at 50% 110%, rgba(124, 92, 255, .12), transparent 60%);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .14); border-radius: 8px; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------------- 顶栏 ---------------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(8, 10, 17, .78);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1560px; margin: 0 auto; height: var(--topbar-h);
  display: flex; align-items: center; gap: 16px; padding: 0 clamp(12px, 3vw, 28px);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  font-size: 20px; background: var(--accent); box-shadow: 0 6px 20px rgba(124, 92, 255, .45);
  overflow: hidden; object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-size: 17px; letter-spacing: .5px; }
.brand-text i { font-style: normal; font-size: 11px; color: var(--text-mute); }

.mainnav { display: flex; gap: 4px; flex-shrink: 0; }
.mainnav a {
  padding: 8px 14px; border-radius: 999px; font-size: 14px; color: var(--text-dim);
  transition: .18s; white-space: nowrap;
}
.mainnav a:hover { color: var(--text); background: var(--surface-2); }
.mainnav a.active { color: #fff; background: var(--accent); box-shadow: 0 6px 18px rgba(124, 92, 255, .35); }

.searchwrap { position: relative; flex: 1; max-width: 520px; margin: 0 auto; }
.searchbox {
  display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  transition: .2s;
}
.searchbox:focus-within { border-color: var(--brand); background: var(--surface-2); box-shadow: 0 0 0 4px rgba(124, 92, 255, .16); }
.searchbox .ico { width: 18px; height: 18px; fill: var(--text-mute); flex-shrink: 0; }
.searchbox input {
  flex: 1; min-width: 0; background: none; border: none; outline: none; color: var(--text); font-size: 14px;
}
.searchbox input::placeholder { color: var(--text-mute); }
.searchbox input::-webkit-search-cancel-button { display: none; }
.clear-btn { background: none; border: none; color: var(--text-mute); font-size: 13px; padding: 2px 4px; }

.suggest {
  position: absolute; top: 48px; left: 0; right: 0; z-index: 70;
  background: rgba(16, 20, 33, .97); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; padding: 6px;
}
.suggest .sg-item { padding: 9px 12px; border-radius: 8px; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; gap: 10px; }
.suggest .sg-item:hover, .suggest .sg-item.sel { background: var(--surface-2); }
.suggest .sg-item small { color: var(--text-mute); }
.suggest .sg-title { padding: 8px 12px 4px; font-size: 11px; color: var(--text-mute); letter-spacing: 1px; }
.suggest .sg-clear { padding: 8px 12px; font-size: 12px; color: var(--danger); cursor: pointer; text-align: center; }

.topbar-actions { display: flex; gap: 4px; flex-shrink: 0; }
.icon-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  width: 52px; height: 46px; border-radius: 12px; background: none; border: none; color: var(--text-dim);
  font-size: 10px; transition: .18s;
}
.icon-btn svg { width: 19px; height: 19px; fill: currentColor; }
.icon-btn:hover { color: #fff; background: var(--surface-2); }
.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; }

.announce {
  background: linear-gradient(90deg, rgba(124, 92, 255, .22), rgba(33, 212, 253, .16));
  border-top: 1px solid var(--line);
  padding: 7px 20px; font-size: 12.5px; color: #dfe4f5; text-align: center;
}

/* ---------------- 主区 ---------------- */
.view { max-width: 1560px; margin: 0 auto; padding: 22px clamp(12px, 3vw, 28px) 80px; min-height: 60vh; }

.section { margin-bottom: 30px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.section-head h2 { margin: 0; font-size: 19px; display: flex; align-items: center; gap: 9px; }
.section-head h2::before { content: ''; width: 4px; height: 18px; border-radius: 3px; background: var(--accent); }
.section-head .more { font-size: 13px; color: var(--text-dim); }

/* ---------------- 轮播 ---------------- */
.hero { position: relative; border-radius: 22px; overflow: hidden; margin-bottom: 28px; background: #0d1020; }
.hero-track { display: flex; transition: transform .5s cubic-bezier(.4, 0, .2, 1); }
.hero-slide { position: relative; min-width: 100%; height: clamp(240px, 34vw, 420px); display: block; }
.hero-slide img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 10, 17, .95) 0%, rgba(8, 10, 17, .55) 45%, rgba(8, 10, 17, .2) 100%), linear-gradient(0deg, rgba(8, 10, 17, .95), transparent 55%); }
.hero-info { position: absolute; left: clamp(18px, 5vw, 60px); bottom: clamp(20px, 4vw, 44px); z-index: 2; max-width: min(560px, 70%); }
.hero-info .tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; background: var(--accent); margin-bottom: 10px; }
.hero-info h1 { margin: 0 0 8px; font-size: clamp(26px, 4.4vw, 46px); line-height: 1.1; letter-spacing: .5px; }
.hero-info p { margin: 0 0 14px; color: #c4cbe0; font-size: 13.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-dots { position: absolute; right: 22px; bottom: 20px; z-index: 3; display: flex; gap: 7px; }
.hero-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .3); cursor: pointer; transition: .2s; }
.hero-dots i.on { width: 22px; border-radius: 4px; background: var(--brand-2); }

/* ---------------- 按钮 ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--surface); color: var(--text);
  font-size: 14px; transition: .18s; white-space: nowrap;
}
.btn:hover { background: var(--surface-2); transform: translateY(-1px); }
.btn-primary { background: var(--accent); border: none; color: #fff; box-shadow: 0 10px 26px rgba(124, 92, 255, .38); font-weight: 600; }
.btn-primary svg { fill: currentColor; }
.btn-ghost { background: rgba(255, 255, 255, .06); }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.ghost-btn { background: rgba(255, 255, 255, .08); border: 1px solid var(--line); color: var(--text); padding: 7px 14px; border-radius: 999px; font-size: 13px; }
.ghost-btn:hover { background: rgba(255, 255, 255, .16); }

/* ---------------- 筛选条 ---------------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  padding: 7px 15px; border-radius: 999px; font-size: 13px; color: var(--text-dim);
  background: var(--surface); border: 1px solid var(--line); transition: .16s; cursor: pointer;
}
.chip:hover { color: var(--text); border-color: var(--line-strong); }
.chip.on { color: #fff; border-color: transparent; background: var(--accent); }

/* ---------------- 卡片网格 ---------------- */
.grid {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(var(--card-w), 1fr));
}
.card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); border: 1px solid var(--line); transition: transform .22s, box-shadow .22s, border-color .22s; cursor: pointer; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .poster { position: relative; aspect-ratio: 2 / 3; background: linear-gradient(140deg, #151a2c, #0d1020); overflow: hidden; }
.card .poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .poster img { transform: scale(1.06); }
.card .noimg { position: absolute; inset: 0; display: grid; place-items: center; font-size: 30px; opacity: .35; }
.card .badge {
  position: absolute; top: 8px; right: 8px; padding: 2px 8px; border-radius: 6px;
  background: rgba(0, 0, 0, .62); backdrop-filter: blur(6px); font-size: 11px; color: #ffe9a8;
}
.card .src { position: absolute; top: 8px; left: 8px; padding: 2px 8px; border-radius: 6px; background: rgba(124, 92, 255, .85); font-size: 10.5px; }
.card .play {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: .22s;
  background: rgba(8, 10, 17, .45);
}
.card:hover .play { opacity: 1; }
.card .play span { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0, 0, 0, .5); }
.card .play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.card .meta { padding: 9px 10px 11px; }
.card .meta .t { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card .meta .s { font-size: 11.5px; color: var(--text-mute); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card .progress { position: absolute; left: 0; bottom: 0; height: 3px; background: var(--brand-2); }

/* 横向滚动行 */
.row-scroll { display: flex; gap: var(--gap); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.row-scroll .card { min-width: var(--card-w); flex: 0 0 var(--card-w); scroll-snap-align: start; }

/* ---------------- 搜索结果 ---------------- */
.result-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.result-bar .cnt { color: var(--text-dim); font-size: 13px; }
.src-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.src-pill { font-size: 11.5px; padding: 3px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--text-dim); }
.src-pill.bad { border-color: rgba(255, 93, 108, .4); color: var(--danger); }

/* ---------------- 详情页 ---------------- */
.detail-hero { position: relative; padding: 34px 0 26px; display: grid; grid-template-columns: 210px 1fr; gap: 28px; }
.detail-hero::before {
  content: ''; position: absolute; inset: 0 -100vw; z-index: -1;
  background-size: cover; background-position: center top; opacity: .22;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 92%);
}
.detail-poster { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #12162a; aspect-ratio: 2 / 3; }
.detail-poster img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { margin: 0 0 6px; font-size: clamp(22px, 3vw, 32px); }
.detail-info .sub { color: var(--text-dim); font-size: 13px; margin-bottom: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tags span { font-size: 12px; padding: 3px 10px; border-radius: 6px; background: var(--surface); border: 1px solid var(--line); color: var(--text-dim); }
.detail-info .desc { color: #c2c9de; font-size: 14px; max-width: 780px; margin-bottom: 18px; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.ep-sec { margin-top: 12px; }
.ep-group { margin-bottom: 18px; }
.ep-group h3 { font-size: 15px; margin: 0 0 10px; color: var(--text-dim); font-weight: 600; }
.ep-list { display: flex; flex-wrap: wrap; gap: 8px; }
.ep-item {
  padding: 8px 16px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line);
  font-size: 13px; color: var(--text-dim); transition: .16s; cursor: pointer; max-width: 220px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ep-item:hover { background: var(--surface-2); color: #fff; }
.ep-item.on { background: var(--accent); color: #fff; border-color: transparent; }

/* 空状态 / 加载 */
.empty { text-align: center; padding: 70px 20px; color: var(--text-mute); }
.empty .em { font-size: 46px; margin-bottom: 12px; opacity: .7; }
.skeleton-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(var(--card-w), 1fr)); }
.sk { border-radius: var(--radius); background: linear-gradient(100deg, #12162a 30%, #1a2038 50%, #12162a 70%); background-size: 220% 100%; animation: shimmer 1.3s infinite; aspect-ratio: 2 / 3.4; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -20% 0; } }
.spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .16); border-top-color: var(--brand-2); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-bar { display: grid; place-items: center; padding: 50px; gap: 12px; color: var(--text-mute); }

/* ---------------- 播放器 ---------------- */
.player-layer { position: fixed; inset: 0; z-index: 200; background: #05070d; display: flex; }
.player-shell { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.player-top { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.player-title { flex: 1; font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-body { flex: 1; display: flex; min-height: 0; }
.player-stage { flex: 1; position: relative; background: #000; display: grid; place-items: center; min-width: 0; }
.player-stage video, .player-stage iframe { width: 100%; height: 100%; border: none; background: #000; object-fit: contain; }
.player-stage iframe[hidden], .player-stage video[hidden] { display: none; }
.player-mask { position: absolute; inset: 0; display: grid; place-items: center; gap: 14px; background: rgba(5, 7, 13, .9); z-index: 5; align-content: center; text-align: center; color: var(--text-dim); }
.player-mask p { margin: 0; font-size: 13.5px; }
.player-side { width: 320px; flex-shrink: 0; border-left: 1px solid var(--line); display: flex; flex-direction: column; background: #0a0d16; }
.side-head { padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-dim); }
.mini-select { background: var(--surface); color: var(--text); border: 1px solid var(--line); border-radius: 8px; padding: 6px 8px; font-size: 13px; outline: none; }
.ep-list.side { flex: 1; overflow-y: auto; padding: 12px 14px; display: flex; flex-wrap: wrap; gap: 7px; align-content: flex-start; }

/* ---------------- Toast / Boot ---------------- */
.toast {
  position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%); z-index: 300;
  background: rgba(20, 24, 40, .96); border: 1px solid var(--line); color: var(--text);
  padding: 10px 20px; border-radius: 999px; font-size: 13.5px; box-shadow: var(--shadow);
}
.boot { position: fixed; inset: 0; z-index: 400; background: var(--bg); display: grid; place-items: center; gap: 16px; align-content: center; color: var(--text-mute); }
.boot p { margin: 0; font-size: 13px; }

/* ---------------- 底部 Tab（移动端） ---------------- */
.tabbar { display: none; }

/* ---------------- 我的 / 设置页 ---------------- */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-bottom: 16px; }
.panel h3 { margin: 0 0 12px; font-size: 15px; }
.kv-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
.kv-row:last-child { border-bottom: none; }
.kv-row span:first-child { color: var(--text-dim); }
.mode-switch { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------------- 页脚 ---------------- */
.footer { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--text-mute); font-size: 12.5px; text-align: center; line-height: 1.9; }

/* ============================================================
   平板 ≤1024px
   ============================================================ */
@media (max-width: 1024px) {
  .mainnav { display: none; }
  .brand-text i { display: none; }
  .player-side { width: 260px; }
}

/* ============================================================
   手机 ≤768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --topbar-h: 56px; --gap: 12px; --card-w: 108px; }
  body { font-size: 14px; padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .topbar-inner { gap: 10px; padding: 0 12px; }
  .brand-text { display: none; }
  .searchwrap { max-width: none; }
  .topbar-actions { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .view { padding: 14px 12px 40px; }
  .hero { border-radius: 16px; }
  .hero-slide { height: 220px; }
  .hero-info { left: 16px; bottom: 16px; max-width: 86%; }
  .hero-dots { right: 14px; bottom: 12px; }
  .detail-hero { grid-template-columns: 120px 1fr; gap: 16px; padding: 20px 0; }
  .detail-info h1 { font-size: 20px; }
  .player-body { flex-direction: column; }
  .player-stage { height: 42vh; flex: none; }
  .player-side { width: auto; border-left: none; border-top: 1px solid var(--line); max-height: 40vh; }
  .ep-list.side { max-height: 30vh; }
  .toast { bottom: 80px; }

  .tabbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(10, 13, 22, .94); backdrop-filter: blur(16px);
    border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom);
  }
  .tabbar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 0 7px; font-size: 10.5px; color: var(--text-mute); }
  .tabbar a span { font-size: 18px; line-height: 1; }
  .tabbar a.active { color: var(--brand-2); }

  /* 抽屉菜单 */
  .topbar.open .topbar-actions {
    display: flex; position: absolute; top: var(--topbar-h); right: 10px; flex-direction: column;
    background: rgba(16, 20, 33, .98); border: 1px solid var(--line); border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
  }
  .topbar.open .topbar-actions .icon-btn { width: 108px; flex-direction: row; gap: 8px; height: 40px; justify-content: flex-start; padding-left: 12px; font-size: 13px; }
  .topbar.open .mainnav {
    display: flex; position: absolute; top: var(--topbar-h); left: 10px; flex-direction: column;
    background: rgba(16, 20, 33, .98); border: 1px solid var(--line); border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
  }
}

/* ============================================================
   TV / 大屏 10-foot UI
   ============================================================ */
body.mode-tv {
  --topbar-h: 84px;
  --card-w: 230px;
  --gap: 26px;
  font-size: 19px;
}
body.mode-tv .view { padding: 30px clamp(24px, 4vw, 60px) 100px; max-width: 1920px; }
body.mode-tv .topbar-inner { max-width: 1920px; height: 84px; }
body.mode-tv .brand-mark { width: 52px; height: 52px; font-size: 28px; border-radius: 16px; }
body.mode-tv .brand-text b { font-size: 24px; }
body.mode-tv .mainnav a { font-size: 20px; padding: 12px 24px; }
body.mode-tv .searchbox { height: 54px; }
body.mode-tv .searchbox input { font-size: 19px; }
body.mode-tv .section-head h2 { font-size: 28px; }
body.mode-tv .card .meta .t { font-size: 18px; }
body.mode-tv .card .meta .s { font-size: 15px; }
body.mode-tv .card .play span { width: 76px; height: 76px; }
body.mode-tv .card .play { opacity: 0; }
body.mode-tv .card.focus .play { opacity: 1; }
body.mode-tv .ep-item { font-size: 18px; padding: 12px 24px; }
body.mode-tv .chip { font-size: 18px; padding: 10px 22px; }
body.mode-tv .detail-info h1 { font-size: 44px; }
body.mode-tv .detail-hero { grid-template-columns: 300px 1fr; gap: 40px; }
body.mode-tv .hero-slide { height: 460px; }
body.mode-tv .btn { font-size: 19px; padding: 14px 30px; }
body.mode-tv .tabbar { display: none; }

/* 焦点态（TV 遥控器 / 键盘） */
[data-focus] { outline: none; }
body.mode-tv [data-focus].focus,
body.kbd [data-focus]:focus-visible {
  outline: 3px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 14px;
  box-shadow: 0 0 0 6px rgba(33, 212, 253, .18);
  transform: translateY(-4px);
}
body.mode-tv .card.focus { transform: translateY(-8px) scale(1.03); box-shadow: 0 26px 60px rgba(0, 0, 0, .7); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
