:root {
  --ws-bg: #0a0c0b;
  --ws-surface: #151917;
  --ws-text: #f8f4eb;
  --ws-muted: #c4b5a3;
  --ws-accent: #f0b429;
  --ws-accent-2: #3d9970;
  --ws-danger: #e63946;
  --ws-font-display: "Fraunces", "Georgia", serif;
  --ws-font-body: "Outfit", system-ui, sans-serif;
  --ws-radius: 14px;
  --ws-header-h: 64px;
  --ws-glow: 0 0 80px rgba(240, 180, 41, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ws-font-body);
  background: var(--ws-bg);
  color: var(--ws-text);
  line-height: 1.6;
}

h1,
h2,
h3,
.ws-logo {
  font-family: var(--ws-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ws-ambient-toggle {
  margin-left: auto;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--ws-accent);
  background: transparent;
  color: var(--ws-text);
  cursor: pointer;
}

.ws-minimap {
  position: fixed;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  padding: 0.5rem 0.35rem;
  max-height: 70vh;
  overflow-y: auto;
}

.ws-minimap__label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  text-align: center;
  color: var(--ws-muted);
  margin-bottom: 0.35rem;
}

.ws-minimap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ws-minimap__btn {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ws-text);
  cursor: pointer;
  font-size: 0.7rem;
}

.ws-minimap__btn.is-active {
  border-color: var(--ws-accent);
  background: rgba(232, 163, 23, 0.2);
}

.ws-passport-wall__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.ws-passport-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--ws-text);
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}

.ws-passport-stamp img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px dashed var(--ws-muted);
}

.ws-passport-stamp.is-stamped {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

.ws-passport-stamp.is-stamped img {
  border: 3px solid var(--ws-accent);
  box-shadow: 0 0 16px var(--ws-glow, rgba(232, 163, 23, 0.4));
}

.ws-passport-stamp span {
  font-size: 0.7rem;
  margin-top: 0.35rem;
  text-align: center;
}

.ws-daily-safari {
  margin: 0 auto 2rem;
  max-width: 1100px;
  padding: 0 1rem;
}

.ws-daily-safari__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--ws-surface);
  border-radius: var(--ws-radius);
  overflow: hidden;
  border: 2px solid var(--ws-accent);
}

.ws-daily-safari__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.ws-daily-safari__copy {
  padding: 1.5rem;
}

.ws-daily-safari__tagline {
  color: var(--ws-accent);
  font-weight: 600;
}

.ws-btn--ghost {
  margin-left: 0.5rem;
  background: transparent;
  border: 1px solid var(--ws-muted);
}

.ws-director-vault {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 2px dashed var(--ws-accent-2, #3d5c2e);
  border-radius: var(--ws-radius);
  text-align: center;
}

.ws-director-blur {
  filter: blur(6px);
  user-select: none;
}

.ws-director-revealed {
  font-size: 1.1rem;
  line-height: 1.5;
}

.ws-quiz__social-proof {
  font-size: 0.9rem;
  color: var(--ws-accent);
  margin-bottom: 0.75rem;
}

.ws-share-card-modal {
  border: none;
  border-radius: var(--ws-radius);
  padding: 1.5rem;
  max-width: 420px;
  width: 92vw;
  background: var(--ws-surface);
  color: var(--ws-text);
}

.ws-share-card-preview img {
  width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}

.ws-share-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .ws-daily-safari__inner {
    grid-template-columns: 1fr;
  }
}

.ws-stock-credit {
  font-size: 0.7rem;
  color: var(--ws-muted);
  text-align: center;
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .ws-minimap {
    display: none;
  }
}

.ws-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: var(--ws-header-h);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ws-logo {
  color: var(--ws-accent);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.ws-nav a {
  color: var(--ws-muted);
  margin-left: 1rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.ws-nav a:hover {
  color: var(--ws-text);
}

.ws-main {
  min-height: 60vh;
}

.ws-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: var(--ws-surface);
  color: var(--ws-text);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.ws-btn--primary {
  background: linear-gradient(135deg, var(--ws-accent), #c45c00);
  color: #1a1208;
}

.ws-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.ws-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.ws-grid--4 {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.ws-section {
  padding: 2rem 1rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ws-animal-card {
  background: var(--ws-surface);
  border-radius: var(--ws-radius);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.ws-animal-card:hover {
  transform: translateY(-4px);
}

.ws-animal-card__link {
  color: inherit;
  text-decoration: none;
}

.ws-animal-card__body {
  padding: 1rem;
}

.ws-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--ws-danger);
}

.ws-hero-home {
  min-height: min(88vh, 820px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse 120% 80% at 50% 100%, #1a2f22 0%, var(--ws-bg) 65%);
  padding: 4rem 1.25rem 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ws-glow);
}

.ws-hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ws-home-hero);
  background-size: cover;
  background-position: center 25%;
  opacity: 0.55;
  filter: saturate(1.15) contrast(1.05);
}

.ws-hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 11, 0.15) 0%, rgba(10, 12, 11, 0.75) 55%, var(--ws-bg) 100%);
}

.ws-hero-home__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.ws-hero-home h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.08;
  margin: 0.35rem 0 1rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.ws-hero-home--blog {
  min-height: 42vh;
}

.ws-blog-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ws-blog-grid--teaser {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.ws-blog-card {
  background: var(--ws-surface);
  border-radius: var(--ws-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.ws-blog-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ws-blog-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ws-blog-card__title {
  margin: 0;
  font-size: 1.25rem;
}

.ws-blog-card__title a {
  color: var(--ws-text);
  text-decoration: none;
}

.ws-blog-card__meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ws-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ws-blog-single {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.ws-blog-single__header h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.ws-blog-single__deck {
  font-size: 1.15rem;
  color: var(--ws-muted);
}

.ws-blog-teaser__more {
  margin-top: 1.5rem;
  text-align: center;
}

.ws-pagination {
  margin-top: 2rem;
  text-align: center;
}

.ws-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ws-pagination a,
.ws-pagination span {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: var(--ws-surface);
  color: var(--ws-text);
  text-decoration: none;
}

.ws-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ws-accent);
  font-size: 0.8rem;
}

/* Safari single */
.ws-safari {
  position: relative;
}

.ws-progress {
  position: fixed;
  top: var(--ws-header-h);
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 90;
}

.ws-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--ws-accent);
  transition: width 0.15s ease;
}

.ws-chapter {
  min-height: 70vh;
  padding: 3rem 1rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.ws-landing {
  position: relative;
  min-height: 90vh;
  max-width: none;
  margin: 0 -1rem;
}

.ws-landing__hero {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.ws-landing__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem 1.5rem;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.85));
  text-align: center;
}

.ws-landing__tagline {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ws-accent);
  margin: 0 0 0.5rem;
}

.ws-rangoli-deco {
  display: block;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.ws-hook.ws-rangoli-frame {
  position: relative;
  padding: 2rem 1.5rem;
}

.ws-next-safari {
  position: fixed;
  right: 1rem;
  bottom: 4.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--ws-accent-2, #2d6a4f), var(--ws-accent));
  color: #111;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: ws-pulse-fab 2s ease-in-out infinite;
}

.ws-next-safari strong {
  font-size: 0.95rem;
}

@keyframes ws-pulse-fab {
  50% {
    transform: scale(1.03);
  }
}

.ws-landing__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin: 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ws-rangoli-frame {
  border: 3px solid var(--ws-accent);
  border-radius: var(--ws-radius);
  padding: 2rem;
  background: linear-gradient(145deg, rgba(232, 163, 23, 0.12), transparent);
  box-shadow: inset 0 0 40px rgba(232, 163, 23, 0.08);
}

.ws-hotspot-stage {
  position: relative;
  margin: 1.5rem 0;
  border-radius: var(--ws-radius);
  overflow: hidden;
}

.ws-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.ws-hotspot__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ws-accent);
  box-shadow: 0 0 0 4px rgba(232, 163, 23, 0.35);
  animation: ws-pulse 2s infinite;
}

@keyframes ws-pulse {
  50% {
    transform: scale(1.15);
  }
}

.ws-hotspot-modal {
  border: none;
  border-radius: var(--ws-radius);
  padding: 1.5rem;
  max-width: 360px;
  background: var(--ws-surface);
  color: var(--ws-text);
}

.ws-icon-grid,
.ws-diet-grid,
.ws-threats-list,
.ws-conserve-row {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.ws-diet-grid {
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.ws-diet-card {
  text-align: center;
  padding: 1rem;
  background: var(--ws-surface);
  border-radius: var(--ws-radius);
}

.ws-facts-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.ws-fact-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--ws-surface);
  padding: 1.25rem;
  border-radius: var(--ws-radius);
}

.ws-stat-callout {
  margin-top: 2rem;
  text-align: center;
}

.ws-stat-callout__num {
  display: block;
  font-size: 2.5rem;
  color: var(--ws-accent);
  font-weight: 800;
}

.ws-coaster-pin {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ws-coaster-track {
  height: 120px;
  margin: 2rem 0;
  background: linear-gradient(90deg, transparent, var(--ws-accent-2), transparent);
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}

.ws-coaster-car {
  width: 40px;
  height: 40px;
  background: var(--ws-accent);
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 40px;
}

.ws-threats-title {
  color: #ff6b6b;
}

.ws-threats-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(193, 18, 31, 0.12);
  border-radius: var(--ws-radius);
}

.ws-conserve-row {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.ws-conserve-row li {
  text-align: center;
  padding: 1rem;
  background: rgba(45, 106, 79, 0.25);
  border-radius: var(--ws-radius);
}

.ws-secret-vault {
  text-align: center;
  padding: 2rem;
  background: var(--ws-surface);
  border-radius: var(--ws-radius);
}

.ws-secret-blur {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}

body.ws-secret-unlocked .ws-secret-blur,
.ws-secret-vault.is-unlocked .ws-secret-blur {
  filter: none;
  pointer-events: auto;
}

.ws-ad-between,
.ws-ad-unit {
  min-height: 90px;
  margin: 1rem auto;
  max-width: 728px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.ws-ad-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 50px;
  z-index: 80;
  background: var(--ws-surface);
}

.ws-affiliate-strip {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ws-affiliate-strip.is-visible {
  animation: ws-fade-in 0.4s ease;
}

.ws-revenue-next-cta {
  margin: 2rem 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(212, 160, 23, 0.35);
  text-align: center;
}

.ws-revenue-next-cta__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ws-muted);
  margin: 0 0 0.35rem;
}

.ws-revenue-next-cta__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.ws-revenue-next-cta__affiliate {
  display: inline-block;
  margin-top: 0.75rem;
}

.ws-weekly-challenge__card {
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(34, 90, 60, 0.35), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-weekly-challenge.is-done .ws-weekly-challenge__card {
  border-color: rgba(212, 160, 23, 0.5);
}

.ws-weekly-challenge__badge {
  margin-right: 0.35rem;
}

.ws-weekly-challenge__meta {
  font-size: 0.85rem;
  color: var(--ws-muted);
}

.ws-spot-hint {
  font-size: 0.9rem;
  color: var(--ws-muted);
  margin-bottom: 0.5rem;
}

.ws-spot-target {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 160, 23, 0.7);
  background: rgba(212, 160, 23, 0.15);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
  animation: ws-pulse 2s ease infinite;
}

.ws-spot-target.is-found {
  animation: none;
  border-style: solid;
  background: rgba(80, 200, 120, 0.35);
}

.ws-exit-rush {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(212, 160, 23, 0.4);
  text-align: center;
}

.ws-exit-rush__timer {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--ws-accent, #d4a017);
}

@keyframes ws-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.ws-gold-lead-magnet {
  position: fixed;
  bottom: 4.5rem;
  right: 1rem;
  max-width: 320px;
  padding: 1rem 1.25rem;
  z-index: 85;
  border-radius: 12px;
  background: var(--ws-surface);
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.ws-gold-lead-magnet__close {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--ws-muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.ws-ad-fallback {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
}

.ws-footer {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--ws-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.visually-hidden-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.visually-hidden-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
}

.ws-breadcrumbs {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--ws-muted);
}

.ws-breadcrumbs a {
  color: var(--ws-accent);
}

.ws-passport-badge {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ws-accent);
  padding: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.ws-passport-tier-badge {
  background: color-mix(in srgb, var(--tier-color, #cd7f32) 25%, transparent);
  border: 1px solid var(--tier-color, #cd7f32);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
}

.ws-passport-tier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.ws-passport-tier {
  opacity: 0.45;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border: 1px dashed var(--ws-muted);
  border-radius: 8px;
  min-width: 6rem;
}

.ws-passport-tier.is-earned {
  opacity: 1;
  border-color: var(--tier-color);
  background: color-mix(in srgb, var(--tier-color) 12%, transparent);
}

.ws-passport-tier.is-next {
  opacity: 0.85;
  border-style: solid;
}

.ws-passport-tier__emoji {
  display: block;
  font-size: 1.5rem;
}

.ws-passport-tier-label {
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ws-lang-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ws-lang-toggle button {
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--ws-accent);
  background: transparent;
  color: var(--ws-text);
  cursor: pointer;
  border-radius: 4px;
}

.ws-lang-toggle button.is-active {
  background: var(--ws-accent);
  color: #1a1208;
}

.ws-passport-wall__hi,
.ws-compare-link__hi,
.ws-hook__hi {
  color: var(--ws-muted);
}

.ws-compare-link {
  text-align: center;
  margin: 1rem 0;
}

.ws-compare-link a {
  color: var(--ws-accent);
  font-weight: 600;
}

.ws-compare__table {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  border-collapse: collapse;
}

.ws-compare__table th,
.ws-compare__table td {
  border: 1px solid color-mix(in srgb, var(--ws-text) 15%, transparent);
  padding: 0.65rem 0.85rem;
  text-align: left;
}

.ws-compare__versus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.ws-compare__animal {
  text-align: center;
  color: inherit;
  text-decoration: none;
  max-width: 280px;
}

.ws-compare__thumb {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.ws-compare__vs {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ws-accent);
}

.ws-compare__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.ws-push-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  margin: 1rem auto;
  max-width: 720px;
  background: color-mix(in srgb, var(--ws-accent) 12%, transparent);
  border-radius: 8px;
}

.ws-hero-picture,
.ws-hero-picture img,
.ws-landing__hero {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ws-chapter--skipped {
  display: none !important;
}

.ws-faq-seo {
  max-width: 720px;
  margin: 2rem auto;
  padding: 1rem;
}

.ws-faq-seo dt {
  font-weight: 700;
  margin-top: 1rem;
}

.ws-safari-chat {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 900;
  max-width: 320px;
}

.ws-safari-chat__panel {
  background: var(--ws-bg, #1a1208);
  border: 1px solid var(--ws-accent);
  padding: 0.75rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.ws-safari-chat__log {
  max-height: 160px;
  overflow-y: auto;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.ws-seasonal-banner {
  text-align: center;
  padding: 1.25rem;
  margin: 1rem auto;
  max-width: 800px;
  border: 1px solid var(--ws-accent);
  border-radius: 8px;
}

.ws-habitat-links ul,
.ws-compare-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ws-chapter-toc {
  max-width: 900px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
  font-size: 0.85rem;
}

.ws-chapter-toc ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.ws-threat-page {
  max-width: 720px;
  margin: 2rem auto;
  padding: 1rem;
}

.ws-threat-page__list {
  line-height: 1.6;
}

.ws-share {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.ws-share a,
.ws-share-copy,
.ws-share-native {
  font-size: 0.9rem;
  color: var(--ws-accent);
  background: none;
  border: 1px solid var(--ws-accent);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.ws-cinema {
  position: relative;
  max-width: 960px;
  margin: 1rem auto;
  border-radius: var(--ws-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.ws-cinema__video,
.ws-cinema__ken {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-cinema__ken {
  background-size: cover;
  background-position: center;
  transition: transform 12s ease-out;
}

.ws-cinema.is-animating .ws-cinema__ken {
  transform: scale(1.12);
}

.ws-cinema__play {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
}

.ws-polaroid {
  max-width: 320px;
  margin: 2rem auto;
  padding: 0.75rem 0.75rem 2rem;
  background: #f4f0e6;
  color: #1a1208;
  transform: rotate(-2deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.ws-polaroid__img {
  width: 100%;
  display: block;
}

.ws-polaroid__caption {
  font-family: Georgia, serif;
  font-style: italic;
  margin: 0.75rem 0 0;
  text-align: center;
}

.ws-chapter--quiz .ws-quiz {
  max-width: 640px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: var(--ws-surface);
  border-radius: var(--ws-radius);
}

.ws-chapter--quiz .ws-quiz__choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ws-chapter--quiz .ws-quiz__choice {
  width: 100%;
  text-align: left;
}

.ws-chapter--quiz .ws-quiz__result.is-correct {
  color: var(--ws-accent-2, #3d5c2e);
}

.ws-hotspot-score {
  text-align: center;
  font-weight: 700;
  color: var(--ws-accent);
}

.ws-hotspot-score.is-complete {
  color: var(--ws-accent-2, #3d5c2e);
}

.ws-btn--affiliate {
  display: inline-block;
  margin-top: 1rem;
}

.ws-affiliate-disclosure {
  font-size: 0.75rem;
  color: var(--ws-muted);
  margin-top: 1rem;
}

.ws-confetti {
  position: fixed;
  top: -8px;
  width: 8px;
  height: 14px;
  z-index: 9999;
  pointer-events: none;
  animation: ws-confetti-fall 2s ease-in forwards;
}

@keyframes ws-confetti-fall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.ws-quiz {
  max-width: 720px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--ws-surface);
  border-radius: var(--ws-radius);
  text-align: center;
}

.ws-quiz__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.ws-quiz__choices button {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--ws-accent);
  background: transparent;
  color: var(--ws-text);
  cursor: pointer;
}

.ws-pledge {
  max-width: 560px;
  margin: 2rem auto;
  padding: 2rem 1rem;
}

.ws-pledge__form label {
  display: block;
  margin: 0.75rem 0;
}

.ws-journey-cta-block {
  background: var(--ws-surface);
  padding: 1.5rem;
  border-radius: var(--ws-radius);
  margin: 1.5rem 0;
  text-align: center;
}

.ws-hub__header {
  text-align: center;
  padding: 2rem 1rem;
}

/* v1.6 — streak, presence, speedrun, duel, map, resume */
.ws-streak-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(200, 80, 20, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.35);
  font-size: 0.9rem;
}
.ws-presence-bar {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ws-muted);
  margin: 0 1rem 0.5rem;
}
.ws-presence-bar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d5;
  margin-right: 0.35rem;
  animation: ws-pulse 1.5s ease infinite;
}
.ws-speedrun {
  position: fixed;
  top: 4.25rem;
  right: 0.75rem;
  z-index: 60;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.ws-speedrun__clock.is-fast {
  color: #7cfc7c;
}
.ws-resume-banner {
  margin: 0 1rem 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: var(--ws-surface);
  border: 1px dashed rgba(212, 160, 23, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.ws-safari-duel {
  max-width: 520px;
  margin: 1.5rem auto;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--ws-surface);
}
.ws-safari-duel__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ws-safari-duel [data-duel-pick].is-correct {
  border-color: #3d5;
}
.ws-safari-duel [data-duel-pick].is-wrong {
  opacity: 0.5;
}
.ws-map-node.is-complete a::before {
  content: '✓ ';
  color: var(--ws-accent, #d4a017);
}
.ws-map-progress {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* v1.5 — cinema, achievements, leaderboard, compare bar, timeline */
body.ws-cinema-mode {
  background: #050403;
}
body.ws-cinema-mode .ws-header {
  background: rgba(0, 0, 0, 0.92);
}
body.ws-cinema-mode .ws-chapter--video .ws-cinema__video,
body.ws-cinema-mode .ws-landing__hero {
  filter: contrast(1.05) saturate(1.1);
}
.ws-cinema-toggle {
  margin-right: 0.35rem;
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.ws-compare-quick-bar {
  position: sticky;
  top: 3.5rem;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin: 0 0 0.5rem;
  background: rgba(10, 8, 6, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ws-compare-quick-bar__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ws-muted);
}
.ws-compare-quick-bar__chip {
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: inherit;
  text-decoration: none;
}
.ws-compare-quick-bar__chip:hover {
  background: rgba(212, 160, 23, 0.28);
}

.ws-leaderboard__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ws-leaderboard__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.ws-leaderboard__panel {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--ws-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ws-leaderboard__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ws-leaderboard__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ws-leaderboard__big {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.25rem 0;
  color: var(--ws-accent, #d4a017);
}

.ws-achievements-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ws-achievement-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
}
.ws-achievement-badge.is-earned {
  opacity: 1;
  filter: none;
  border: 1px solid rgba(212, 160, 23, 0.4);
}
.ws-achievement-badge__emoji {
  font-size: 1.35rem;
}
.ws-achievement-badge__label {
  font-size: 0.6rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.ws-achievement-toast {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  max-width: 90vw;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(212, 160, 23, 0.5);
  transition: transform 0.35s ease;
}
.ws-achievement-toast.is-visible {
  transform: translateX(-50%) translateY(0);
}
.ws-achievement-toast__emoji {
  font-size: 1.75rem;
}

.ws-timeline {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ws-timeline__item {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  padding: 1rem;
  border-radius: 10px;
  background: var(--ws-surface);
  border-left: 3px solid var(--ws-accent, #d4a017);
}
.ws-timeline__when {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ws-muted);
  margin-bottom: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .ws-hotspot__dot {
    animation: none;
  }
  .ws-coaster-car {
    display: none;
  }
}
