:root {
  --bg: #0a0c0e;
  --bg-elev: #12161a;
  --bg-soft: #1a2026;
  --ink: #f4f0e8;
  --muted: #9aa4af;
  --line: rgba(244, 240, 232, 0.08);
  --line-strong: rgba(244, 240, 232, 0.14);
  --accent: #d4a35a;
  --accent-2: #f0d2a0;
  --accent-ink: #1a1208;
  --teal: #6f9eaa;
  --danger: #e07a6a;
  --ok: #6fbf8a;
  --radius: 16px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Sora", sans-serif;
  --max: 1180px;
  --header-h: 72px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page-atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(212, 163, 90, 0.16), transparent 58%),
    radial-gradient(700px 420px at 92% 8%, rgba(111, 158, 170, 0.12), transparent 55%),
    radial-gradient(800px 500px at 50% 100%, rgba(212, 163, 90, 0.05), transparent 50%),
    linear-gradient(180deg, #0b0e11 0%, #0a0c0e 45%, #080a0c 100%);
}

.page-atmosphere::after {
  content: "";
  position: absolute;
  inset: 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.9' 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; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 2.2rem)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(10, 12, 14, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--accent-2), var(--accent) 60%, #8a5a28);
  box-shadow: 0 0 0 3px rgba(212, 163, 90, 0.12);
  animation: mark-glow 4s ease-in-out infinite;
}

@keyframes mark-glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 163, 90, 0.12); }
  50% { box-shadow: 0 0 0 5px rgba(212, 163, 90, 0.2); }
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-cats {
  display: flex;
  gap: 1rem;
  margin-left: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-cats::-webkit-scrollbar { display: none; }

.nav-cats a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav-cats a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-cats a:hover,
.nav-cats a.active { color: var(--ink); }
.nav-cats a.active::after,
.nav-cats a:hover::after { transform: scaleX(1); }

.search-form {
  margin-left: auto;
  display: flex;
  align-items: center;
  background: rgba(26, 32, 38, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.3rem 0.15rem 0.95rem;
  min-width: 210px;
  transition: border-color 0.2s;
}

.search-form:focus-within { border-color: rgba(212, 163, 90, 0.45); }

.search-form input {
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  width: 100%;
  padding: 0.5rem 0;
}

.search-form input::placeholder { color: #6f7882; }

.search-form button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-cat-toggle {
  display: none;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--line);
  background: rgba(26, 32, 38, 0.9);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-cat-toggle[aria-expanded="true"] {
  border-color: rgba(212, 163, 90, 0.5);
  color: var(--accent);
}

.btn-cat-toggle svg {
  transition: transform 0.2s ease;
}

.btn-cat-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-cat-mask {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-cat-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(82vw, 320px);
  height: 100%;
  background: #12161a;
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  padding: calc(var(--header-h) * 0.35) 1rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-cat-panel.is-open {
  transform: translateX(0);
}

.mobile-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.mobile-cat-head strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.mobile-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mobile-cat-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.45rem 0.5rem;
  text-align: center;
  color: var(--ink);
  background: rgba(26, 32, 38, 0.95);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-cat-grid a.active,
.mobile-cat-grid a:hover {
  border-color: rgba(212, 163, 90, 0.55);
  color: var(--accent);
}

body.cat-drawer-open {
  overflow: hidden;
}

.link-vip {
  color: var(--accent-ink);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  margin-right: 0.15rem;
}

.link-publish {
  color: var(--accent);
  border: 1px solid rgba(212, 163, 90, 0.45);
  background: rgba(212, 163, 90, 0.1);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.65rem;
  border-radius: 6px;
  margin-right: 0.2rem;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.link-publish:hover {
  background: rgba(212, 163, 90, 0.2);
  border-color: rgba(212, 163, 90, 0.7);
  color: var(--accent-2, var(--accent));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--accent-ink);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: rgba(212, 163, 90, 0.4); color: var(--accent-2); }
.btn-lg { padding: 0.85rem 1.45rem; }
.btn-block { width: 100%; }
.btn-sm { padding: 0.38rem 0.8rem; font-size: 0.84rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.text-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.text-link:hover { color: var(--accent-2); }

/* Home masthead — brand + categories, no opening animation */
.masthead {
  position: relative;
  padding: 2.8rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.masthead::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 163, 90, 0.14), transparent 65%);
  animation: drift-soft 14s ease-in-out infinite alternate;
}

@keyframes drift-soft {
  from { transform: translate(0, 0); }
  to { transform: translate(-4%, -6%); }
}

.masthead-inner { position: relative; }

.masthead-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  background: linear-gradient(105deg, #fff8ec 10%, var(--accent-2) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fade-in 0.7s ease both;
}

.masthead-lead {
  margin: 0.9rem 0 1.5rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.02rem;
  animation: fade-in 0.8s ease 0.06s both;
}

.cat-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  animation: fade-in 0.85s ease 0.12s both;
}

.cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(18, 22, 26, 0.75);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.cat-chip:hover,
.cat-chip.is-active {
  border-color: rgba(212, 163, 90, 0.55);
  color: var(--accent-2);
  background: rgba(212, 163, 90, 0.08);
  transform: translateY(-1px);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.announce {
  margin-top: 1.2rem;
  padding: 0.9rem 1.15rem;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(212, 163, 90, 0.1), transparent 80%);
  color: var(--accent-2);
  font-size: 0.95rem;
}

.home-banners { padding: 1.4rem 0 0; }
.banner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}
.home-banner {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  min-height: 110px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  transition: transform 0.3s ease, border-color 0.3s;
}
.home-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 163, 90, 0.35);
}
.home-banner img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.home-banner span {
  display: grid;
  place-items: center;
  min-height: 110px;
  color: var(--muted);
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

/* Sections */
.section { padding: 2.6rem 0; }
.section-kicker {
  margin: 0 0 0.25rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.section-head { margin-bottom: 1.35rem; }
.section-head h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-head p { margin: 0.3rem 0 0; color: var(--muted); }
.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.cat-section { scroll-margin-top: calc(var(--header-h) + 12px); }

.grid-videos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem 0.85rem;
}

/* Video cards — 封面参考 img-box：16:9，绝对定位铺满，避免长条拉伸 */
.video-card {
  display: block;
  min-width: 0;
  transition: transform 0.3s ease;
}
.video-card:hover { transform: translateY(-4px); }

.poster {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%; /* 16:9，约 242×136 */
  border-radius: 10px;
  overflow: hidden;
  background: #15191d;
}
.poster img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  font-size: 0;
  z-index: 1;
  transition: transform 0.55s ease;
}
.video-card:hover .poster img { transform: scale(1.06); }

.poster-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.85;
  transition: opacity 0.3s;
  pointer-events: none;
}
.video-card:hover .poster-veil { opacity: 1; }

.play-hint {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.play-hint svg {
  width: 48px;
  height: 48px;
  padding: 13px;
  border-radius: 999px;
  background: rgba(212, 163, 90, 0.92);
  color: var(--accent-ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.video-card:hover .play-hint {
  opacity: 1;
  transform: scale(1);
}

.poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--muted);
  background: linear-gradient(160deg, #22282f, #12161a);
}

.badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 4;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.badge.free { background: rgba(111, 191, 138, 0.95); color: #0c1a12; }
.badge.paid { background: rgba(212, 163, 90, 0.96); color: var(--accent-ink); }

.remarks {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 4;
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.45rem;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}

.meta { padding: 0.75rem 0.1rem 0; }
.meta h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.score { color: var(--accent); font-weight: 700; }

/* Inner pages */
.page-head { padding: 2.4rem 0 0.6rem; }
.page-head h1 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
}
.page-head p { color: var(--muted); margin: 0; }

.watch-page { padding-bottom: 3rem; }
.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.4rem;
  padding-top: 1.4rem;
}

.player-shell {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.player-shell video {
  width: 100%;
  height: 100%;
  background: #000;
  /* iOS / 安卓 WebView 避免被裁切 */
  object-fit: contain;
  -webkit-transform: translateZ(0);
}

.player-status {
  position: absolute;
  left: 50%;
  bottom: 3.2rem;
  transform: translateX(-50%);
  z-index: 3;
  max-width: 90%;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #f4f0e8;
  font-size: 0.82rem;
  pointer-events: none;
}
.player-status.is-error {
  background: rgba(180, 60, 40, 0.85);
}

.tap-to-play {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  cursor: pointer;
  background: rgba(6, 8, 10, 0.45);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
}
.tap-to-play span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--accent-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.player-lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.55rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 163, 90, 0.12), transparent 45%),
    rgba(6, 8, 10, 0.82);
  backdrop-filter: blur(8px);
}
.player-lock h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
}
.player-lock p { color: var(--muted); margin: 0; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.watch-info { margin-top: 1.2rem; padding: 0.2rem 0.1rem; }
.watch-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.watch-title-row h1 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
}
.watch-title-row .badge { position: static; }
.watch-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  margin: 0.8rem 0 1rem;
  font-size: 0.9rem;
}
.watch-info > p { margin: 0.35rem 0; color: #c5ccd3; font-size: 0.92rem; }
.watch-info strong { color: var(--ink); font-weight: 600; margin-right: 0.35rem; }
.desc {
  margin-top: 0.9rem;
  color: #b8c0c8;
  line-height: 1.75;
  font-size: 0.94rem;
}

.episodes-col {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 22, 26, 0.7);
  max-height: calc(100vh - 110px);
  overflow: auto;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.episodes-col h2 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 400;
}
.source-block { margin-bottom: 1rem; }
.source-block h3 {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ep-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.ep-btn {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  border-radius: 8px;
  padding: 0.48rem 0.25rem;
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ep-btn.active,
.ep-btn:hover:not(:disabled) {
  border-color: rgba(212, 163, 90, 0.65);
  color: var(--accent-2);
  background: rgba(212, 163, 90, 0.08);
}

.download-box {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.download-box h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}
.download-tip {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.download-status {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.download-status.is-err { color: #e57373; }
.download-status.is-ok { color: #81c784; }

/* Auth */
.auth-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem;
}
.auth-card {
  width: min(420px, 100%);
  background: rgba(18, 22, 26, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.1rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.auth-card h1 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 400;
}
.auth-card > p { color: var(--muted); margin: 0 0 1.3rem; }
.auth-form label,
.stack-form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.auth-form input,
.stack-form input,
.stack-form textarea,
.inline-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
}
.auth-form input:focus,
.stack-form input:focus,
.stack-form textarea:focus {
  outline: none;
  border-color: rgba(212, 163, 90, 0.5);
}
.auth-switch { text-align: center; color: var(--muted); }
.auth-switch a { color: var(--accent); }
.form-msg { min-height: 1.2em; color: var(--danger); }
.ok-msg { color: var(--ok) !important; }
.error-code {
  font-family: var(--font-display);
  font-size: 3.4rem;
  margin: 0;
  color: var(--accent);
}

/* VIP */
.vip-page { padding-bottom: 3.5rem; }
.vip-head { text-align: center; padding-bottom: 1.8rem; }
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 0 auto 1.6rem;
  max-width: 42rem;
}
.pay-methods-label {
  margin: 0;
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(26, 32, 38, 0.75);
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.pay-method:has(input:checked) {
  border-color: rgba(212, 163, 90, 0.55);
  background: rgba(212, 163, 90, 0.12);
}
.pay-method input {
  accent-color: var(--accent);
  margin: 0;
}
.vip-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.plan {
  position: relative;
  padding: 1.6rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(26, 32, 38, 0.9), rgba(18, 22, 26, 0.75));
  transition: transform 0.25s, border-color 0.25s;
}
.plan:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 163, 90, 0.35);
}
.plan.featured {
  border-color: rgba(212, 163, 90, 0.55);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 163, 90, 0.16), transparent 50%),
    linear-gradient(180deg, rgba(32, 28, 20, 0.95), rgba(18, 22, 26, 0.9));
}
.plan-tag {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.plan-tag.hot { color: var(--accent); }
.plan h2 {
  font-family: var(--font-display);
  margin: 0 0 0.8rem;
  font-size: 1.7rem;
  font-weight: 400;
}
.plan .price {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  color: var(--accent-2);
  letter-spacing: -0.02em;
}
.plan .price em {
  font-style: normal;
  font-size: 1.1rem;
  margin-right: 0.15rem;
}
.plan .price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.plan ul {
  margin: 0 0 1.35rem;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding: 2.8rem 0 1.6rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p {
  margin: 0.65rem 0 0;
  max-width: 28rem;
  line-height: 1.7;
  font-size: 0.92rem;
}
.footer-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}
.footer-col h4 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.copy { margin: 0; font-size: 0.82rem; }

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2rem;
}
.pager a,
.pager .current {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pager a:hover {
  border-color: rgba(212, 163, 90, 0.45);
  color: var(--accent-2);
}
.pager .current {
  background: rgba(212, 163, 90, 0.2);
  border-color: rgba(212, 163, 90, 0.5);
  color: var(--accent-2);
  font-weight: 600;
}
.pager-meta {
  margin-left: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.empty { color: var(--muted); text-align: center; padding: 2rem; }
.empty.soft { padding: 1rem 0 0; text-align: left; }

.table-wrap { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0.5rem;
  text-align: left;
}
.data-table th { color: var(--muted); font-weight: 600; }

/* —— 会员中心 —— */
.member-page { padding-top: 1.5rem; }
.member-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.member-side {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.member-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.member-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-meta strong {
  display: block;
  font-size: 1.05rem;
}
.member-meta .muted,
.member-meta p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.vip-on { color: var(--accent) !important; }
.member-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.member-nav a,
.member-logout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.member-nav a:hover,
.member-nav a.active {
  color: var(--ink);
  background: rgba(212, 163, 90, 0.1);
}
.member-nav a.active { color: var(--accent); }
.member-nav em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(212, 163, 90, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}
.member-logout { color: var(--danger); margin-top: 0.5rem; }
.member-main { min-width: 0; }
.member-head { margin-bottom: 1.25rem; }
.member-head.row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.member-head h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
}
.member-head p { margin: 0; color: var(--muted); }
.ok-msg { color: var(--ok) !important; margin-bottom: 0.35rem !important; }
.member-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.member-stat {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  color: inherit;
}
.member-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}
.member-stat strong {
  font-size: 1.15rem;
}
.member-panel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}
.member-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.member-panel-head h2 {
  margin: 0;
  font-size: 1.05rem;
}
.member-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.member-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.member-form label {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.member-form input,
.member-form select,
.member-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(26, 32, 38, 0.9);
  color: var(--ink);
  font: inherit;
}
.member-form input:disabled {
  opacity: 0.6;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
}
.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-tips {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.member-tips p { margin: 0.25rem 0; }
.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.history-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.history-cover {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
}
.history-cover img,
.history-cover .cover-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.history-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.history-body h3 a { color: inherit; }
.history-body p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.history-actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.member-vip-status {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  margin-bottom: 1rem;
}
.member-vip-status.is-vip {
  border-color: rgba(212, 163, 90, 0.4);
  background:
    radial-gradient(500px 180px at 10% 0%, rgba(212, 163, 90, 0.16), transparent 60%),
    var(--bg-elev);
}
.member-vip-status .kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.member-vip-status h2 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
}
.member-vip-status p { color: var(--muted); margin: 0 0 1rem; }
.member-plan-list { display: flex; flex-direction: column; gap: 0.65rem; }
.member-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(26, 32, 38, 0.55);
}
.member-plan.featured { border-color: rgba(212, 163, 90, 0.45); }
.member-plan strong { display: block; }
.member-plan p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.84rem; }
.member-plan-price {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.member-plan-price em {
  font-style: normal;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
}
.watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0 0.85rem;
}
.btn-fav.is-on {
  border-color: rgba(212, 163, 90, 0.55);
  color: var(--accent);
}
.badge-soft {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}
.badge-soft.on {
  color: var(--ok);
  background: rgba(111, 191, 138, 0.12);
}
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .member-layout { grid-template-columns: 1fr; }
  .member-side { position: static; }
  .member-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
  }
  .member-logout { grid-column: 1 / -1; }
  .member-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .history-item { grid-template-columns: 96px minmax(0, 1fr); }
  .nav-cats { display: none; }
  .btn-cat-toggle { display: inline-flex; }
  .mobile-cat-mask:not([hidden]) { display: block; }
  .mobile-cat-panel:not([hidden]) { display: block; }
  .grid-videos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .watch-layout,
  .vip-plans,
  .footer-grid { grid-template-columns: 1fr; }
  .episodes-col { position: static; max-height: none; }
  .masthead { padding-top: 2rem; }
}

@media (max-width: 640px) {
  .search-form { display: none; }
  .header-actions { margin-left: auto; }
  .grid-videos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem 0.55rem; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary,
  .header-actions .btn-member,
  .header-actions .link-vip,
  .header-actions .link-publish { display: inline-flex; }
  .masthead-brand { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .play-hint svg { width: 40px; height: 40px; padding: 11px; }
  .meta h3 { font-size: 0.86rem; }
  .fab-app-download { right: 0.75rem; bottom: 0.9rem; }
}

/* APP 下载悬浮钮 */
.fab-app-download {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a2026, #12161a);
  border: 1px solid rgba(212, 163, 90, 0.45);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}
.fab-app-download img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}
.fab-app-download:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.download-page { padding-top: 1.5rem; padding-bottom: 3rem; }
.download-wrap { max-width: 520px; margin: 0 auto; }
.download-hero { text-align: center; margin-bottom: 1.5rem; }
.download-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
}
.download-hero h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.download-hero p { margin: 0.2rem 0; color: var(--muted); }
.download-ver { font-size: 0.85rem !important; }
.download-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.btn-lg { padding: 0.85rem 1.2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; text-align: center; display: inline-flex; }
.download-tip {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}
.download-steps {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.download-steps h2 { margin: 0 0 0.75rem; font-size: 1.05rem; }
.download-steps ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.price-origin {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
}
.plan-upgrade { border-color: rgba(212, 163, 90, 0.45); }
.plan-tip {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.upgrade-li { color: var(--accent) !important; }
.vip-current-tip {
  margin-top: 0.75rem !important;
  color: var(--accent) !important;
  font-size: 0.92rem !important;
}
.upgrade-hint {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.5rem 0 1rem;
}
.member-plan.is-upgrade { border-color: rgba(212, 163, 90, 0.45); }
.btn-upgrade {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--accent-ink);
  border: 0;
}

/* —— 站群发布页 —— */
.publish-body {
  margin: 0;
  min-height: 100vh;
  color: var(--text, #e8ecef);
  background: #0a0d10;
  font-family: Sora, system-ui, sans-serif;
}
.publish-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 163, 90, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(40, 70, 90, 0.25), transparent 50%),
    linear-gradient(180deg, #0c1014 0%, #080a0c 100%);
}
.publish-page {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
}
.publish-hero {
  text-align: center;
  margin-bottom: 2rem;
  animation: publishIn 0.7s ease both;
}
.publish-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 163, 90, 0.85);
  font-weight: 600;
}
.publish-brand {
  margin: 0 0 0.75rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f2efe8;
}
.publish-intro {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: rgba(232, 236, 239, 0.62);
  font-size: 0.98rem;
  line-height: 1.65;
}
.publish-search-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.publish-search {
  width: min(100%, 22rem);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 22, 26, 0.75);
  color: #f2efe8;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.publish-search:focus {
  border-color: rgba(212, 163, 90, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 163, 90, 0.12);
}
.publish-count {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(232, 236, 239, 0.45);
}
.publish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.publish-item {
  animation: publishIn 0.55s ease both;
}
.publish-item:nth-child(1) { animation-delay: 0.05s; }
.publish-item:nth-child(2) { animation-delay: 0.1s; }
.publish-item:nth-child(3) { animation-delay: 0.15s; }
.publish-item:nth-child(4) { animation-delay: 0.2s; }
.publish-item:nth-child(5) { animation-delay: 0.25s; }
.publish-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 32, 38, 0.72), rgba(14, 17, 20, 0.55));
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.publish-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 163, 90, 0.45);
  background: linear-gradient(135deg, rgba(36, 32, 24, 0.85), rgba(18, 20, 22, 0.7));
}
.publish-name {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f5f2eb;
}
.publish-host {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.82rem;
  color: rgba(232, 236, 239, 0.48);
  word-break: break-all;
}
.publish-go {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(212, 163, 90, 0.95);
  font-weight: 600;
}
.publish-empty {
  text-align: center;
  color: rgba(232, 236, 239, 0.5);
  padding: 2rem 1rem;
}
.publish-foot {
  margin-top: 2.5rem;
  text-align: center;
  color: rgba(232, 236, 239, 0.35);
  font-size: 0.8rem;
}
.publish-foot p { margin: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@keyframes publishIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .publish-page { padding-top: 2.4rem; }
  .publish-link { padding: 0.9rem 1rem; }
}

/* 蜘蛛池：仅蜘蛛响应中出现；普通用户 HTML 不含此块 */
.spider-pool {
  max-width: 1100px;
  margin: 0.75rem auto 0;
  padding: 0 1rem 1rem;
  font-size: 12px;
  line-height: 1.8;
  word-break: break-all;
}
.spider-pool a {
  margin-right: 0.65rem;
  color: inherit;
  text-decoration: underline;
}
