:root {
  --lime: #8edc3f;
  --lime-strong: #79c531;
  --black: #0a0a0a;
  --gray-100: #f2f4f7;
  --gray-200: #e6e9ef;
  --gray-500: #5c6574;
  --white: #ffffff;
  --max: 1120px;
  --container-dark: linear-gradient(165deg, #3b434d 0%, #2f3741 100%);
  --container-lime-border: rgba(142, 220, 63, 0.4);
  --brand-logo-h: 72px;
  --bar-padding-y: 0.35rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background-color: var(--gray-100);
  color: #111;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("background-site.jpg");
  background-position: center 36%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.72) contrast(1.14) saturate(0.9);
  transform: scale(1.02);
  z-index: -1;
  pointer-events: none;
}

body.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.62;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.26) 100%),
    repeating-linear-gradient(
      to bottom,
      rgba(200, 255, 235, 0.12) 0px,
      rgba(200, 255, 235, 0.12) 1px,
      rgba(0, 0, 0, 0.36) 1px,
      rgba(0, 0, 0, 0.36) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 50, 50, 0.05) 0px,
      rgba(255, 50, 50, 0.05) 1px,
      rgba(50, 120, 255, 0.05) 1px,
      rgba(50, 120, 255, 0.05) 2px,
      rgba(0, 0, 0, 0.0) 4px,
      rgba(0, 0, 0, 0.0) 6px
    );
  transform: scale(1.006);
  animation:
    crtWave 3.6s ease-in-out infinite,
    crtFlicker 0.12s steps(2, end) infinite,
    vhsTracking 4.8s linear infinite;
}

@keyframes crtWave {
  0% { transform: translateX(0); }
  20% { transform: translateX(0.6px); }
  40% { transform: translateX(-0.8px); }
  60% { transform: translateX(0.5px); }
  80% { transform: translateX(-0.4px); }
  100% { transform: translateX(0); }
}

@keyframes crtFlicker {
  0% { opacity: 0.25; }
  50% { opacity: 0.3; }
  100% { opacity: 0.24; }
}

@keyframes vhsTracking {
  0% { background-position: 0 0, 0 0, 0 0; }
  25% { background-position: 0 0, 0 1px, 1px 0; }
  50% { background-position: 0 0, 0 -1px, -1px 0; }
  75% { background-position: 0 0, 0 0.5px, 0.5px 0; }
  100% { background-position: 0 0, 0 0, 0 0; }
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #2a2f34 0%, #343b42 100%);
  border-top: 1px solid rgba(142, 220, 63, 0.45);
  border-bottom: 1px solid rgba(142, 220, 63, 0.45);
  min-height: calc(var(--brand-logo-h) + (var(--bar-padding-y) * 2) + 2px);
}

.site-footer {
  background: linear-gradient(180deg, #2a2f34 0%, #343b42 100%);
  border-top: 1px solid rgba(142, 220, 63, 0.45);
  border-bottom: 1px solid rgba(142, 220, 63, 0.45);
  min-height: calc(var(--brand-logo-h) + (var(--bar-padding-y) * 2) + 2px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--bar-padding-y) 0;
}

.footer-inner {
  padding: 0.55rem 0;
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-footer .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header-inner {
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
}

.header-player-shell[hidden] {
  display: none !important;
}

.header-player-shell {
  display: none;
}

.header-player-art-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(142, 220, 63, 0.35);
  background: rgba(10, 14, 18, 0.72);
  flex: 0 0 auto;
}

.header-player-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-player-main {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  column-gap: 0.04rem;
  row-gap: 0.14rem;
  align-items: center;
  justify-content: start;
  overflow: hidden;
}

.header-player-kicker {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbe7a6;
  grid-column: 1 / -1;
}

.header-player-title {
  display: block;
  width: 100%;
  margin: 0.08rem 0 0.14rem;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 900;
  color: #edf9dc;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  grid-column: 1 / -1;
}

.header-player-scrub {
  --progress: 0%;
  width: 100%;
  max-width: 228px;
  justify-self: start;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(142, 220, 63, 0.95) 0,
      rgba(158, 238, 87, 0.96) var(--progress),
      rgba(215, 229, 202, 0.24) var(--progress),
      rgba(215, 229, 202, 0.24) 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(142, 220, 63, 0.18),
    0 0 0 1px rgba(10, 14, 18, 0.2);
  outline: none;
  cursor: pointer;
  transition: background 0.12s linear, box-shadow 0.18s ease;
}

.header-player-scrub::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

.header-player-scrub::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(215, 229, 202, 0.24);
}

.header-player-scrub::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(142, 220, 63, 0.95), rgba(158, 238, 87, 0.96));
}

.header-player-scrub::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -4px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 30%, #eeffd2 0, #d7f3a6 30%, #a6de58 100%);
  border: 1px solid rgba(10, 14, 18, 0.9);
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.35), 0 0 10px rgba(142, 220, 63, 0.45);
}

.header-player-scrub::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 30%, #eeffd2 0, #d7f3a6 30%, #a6de58 100%);
  border: 1px solid rgba(10, 14, 18, 0.9);
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.35), 0 0 10px rgba(142, 220, 63, 0.45);
}

.header-player-scrub:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.header-player-controls {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex: 0 0 auto;
}

.header-player-control {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(142, 220, 63, 0.6);
  background: rgba(10, 14, 18, 0.75);
  color: #e8f5d7;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-player-control:hover,
.header-player-control:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.header-player-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.header-player-time {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: #d7e5ca;
  white-space: nowrap;
  min-width: 0;
  width: max-content;
  text-align: left;
  opacity: 0.95;
  justify-self: start;
}

.header-player-volume {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.header-player-mute {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(142, 220, 63, 0.6);
  background: rgba(10, 14, 18, 0.75);
  color: #e8f5d7;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-player-mute svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
  transform: scale(1.2);
  transform-origin: center;
}

.header-player-mute:hover,
.header-player-mute:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.header-player-mute:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.header-player-volume-slider {
  width: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(215, 229, 202, 0.22);
  outline: none;
  cursor: pointer;
  transition: width 0.18s ease, opacity 0.14s ease;
}

.header-player-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c8f28a;
  border: 1px solid rgba(10, 14, 18, 0.9);
}

.header-player-volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c8f28a;
  border: 1px solid rgba(10, 14, 18, 0.9);
}

.header-player-volume-slider:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.header-player-volume-slider:focus-visible {
  outline: 2px solid rgba(142, 220, 63, 0.78);
  outline-offset: 2px;
}

.header-player-shell.is-volume-open .header-player-volume-slider {
  width: 72px;
  opacity: 1;
  pointer-events: auto;
}

.header-player-close {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(215, 229, 202, 0.45);
  background: rgba(10, 14, 18, 0.75);
  color: #e8f5d7;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-player-close:hover,
.header-player-close:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.header-player-close:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.header-player-scrub:focus-visible {
  outline: 2px solid rgba(142, 220, 63, 0.78);
  outline-offset: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(142, 220, 63, 0.25),
    0 0 0 1px rgba(142, 220, 63, 0.4),
    0 0 10px rgba(142, 220, 63, 0.38);
}

@media (min-width: 961px) {
  .header-player-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.6rem;
    width: min(600px, 52vw);
    min-width: 360px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    border: 1px solid rgba(142, 220, 63, 0.35);
    background: rgba(10, 14, 18, 0.42);
    padding: 0.34rem 0.45rem;
    box-shadow: 0 8px 18px rgba(5, 9, 14, 0.2);
    backdrop-filter: blur(6px);
    z-index: 2;
  }

  body.has-header-player-live .site-header .header-inner {
    padding-bottom: 4.1rem;
  }

  body.has-header-player-live .site-header .header-player-shell {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 0.2rem;
    transform: translateX(-50%);
    width: clamp(360px, 38vw, 560px);
    min-width: 280px;
    margin: 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.site-header .brand {
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 176px;
  height: var(--brand-logo-h);
  object-fit: contain;
  border-radius: 0;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
}

.brand-title {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 900;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #c7d8b0;
  line-height: 1.08;
  -webkit-text-stroke: 0.6px #1a2220;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.brand > div {
  margin-left: -10px;
}

.brand-sub {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #c8ddb1;
  font-weight: 900;
  font-style: italic;
  line-height: 1.14;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-left: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(142, 220, 63, 0.55);
  background: rgba(10, 10, 10, 0.35);
  color: #e8f5d7;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.social-icon-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-social {
  margin-left: auto;
  margin-right: 0.75rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e8f5d7;
  border: 1px solid rgba(142, 220, 63, 0.55);
  background: rgba(10, 10, 10, 0.34);
  transition: box-shadow 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
  color: #f3ffe3;
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.nav-links a {
  color: #e8f5d7;
  text-decoration: none;
  font-weight: 900;
  padding: 0.2rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, text-shadow 0.15s ease;
}

.nav-links a[aria-current="page"],
.nav-links a[aria-current="location"],
.nav-links a.is-active {
  border-bottom-color: var(--lime);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  text-shadow: 0 0 12px rgba(142, 220, 63, 0.72);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.separator {
  height: 2px;
  background: var(--lime);
}

main {
  padding: 2rem 0 3rem;
  flex: 1;
  background-color: transparent;
}

body.has-page-reveal main {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

body.has-page-reveal.is-content-ready main {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0s linear 0s;
}

.hero {
  background-color: #3b434d;
  border: 1px solid var(--container-lime-border);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(14, 24, 34, 0.16), 0 2px 8px rgba(14, 24, 34, 0.08);
  min-height: 440px;
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.hero-slide > * {
  max-width: 54%;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
  width: 100%;
  height: 100%;
  min-height: inherit;
  align-content: start;
  gap: 0.55rem;
  padding: 1.8rem;
  border-radius: 12px;
  animation: hero-fade-in 0.35s ease;
}

.hero-slide.is-active {
  display: grid;
}

.hero-slide-main {
  background:
    linear-gradient(165deg, rgba(10, 14, 18, 0.62) 0%, rgba(10, 14, 18, 0.48) 100%),
    url("greats.jpg") 106% center / contain no-repeat;
}

.hero-slide-return {
  padding: 0;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  background-color: #000;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.hero-slide-return > * {
  max-width: none;
}

.hero-return-image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

.hero-return-mountains,
.hero-return-text-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 12px;
}

.hero-return-mountains {
  background: url("return-hero-mountains-overlay-final.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.52;
}

.hero-return-text-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("return-hero-text-mask2.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.98;
  filter: brightness(1.9) saturate(1.25) drop-shadow(0 0 10px rgba(255, 190, 232, 0.56));
  clip-path: inset(0 100% 0 0);
}

.hero-slide-return.is-active .hero-return-mountains {
  animation: hero-return-mountain-pulse 2.8s ease-in-out infinite;
}

.hero-slide-return.is-active .hero-return-text-shine::before {
  animation: hero-return-text-shine-sweep 3.2s linear infinite;
}

.hero-slide-polls {
  background:
    linear-gradient(165deg, rgba(6, 10, 14, 0.58) 0%, rgba(6, 10, 14, 0.68) 100%),
    url("wm42.png") center center / cover no-repeat;
  min-height: inherit;
  padding: 1.2rem;
  align-content: stretch;
  justify-items: stretch;
}

.hero-slide-polls > * {
  max-width: 100%;
}

.wm-poll-card {
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  gap: 0.45rem;
}

.wm-poll-header {
  text-align: center;
  padding: 0.08rem 0 0.18rem;
}

.wm-poll-header h3 {
  margin: 0 auto;
  display: inline-block;
  padding: 0.28rem 0.78rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 14px rgba(142, 220, 63, 0.24);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.wm-poll-header p {
  margin: 0.2rem 0 0;
  color: #f0ffd9;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.72);
}

.wm-match-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
  min-height: 100%;
}

.wm-match {
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 12px;
  background: rgba(8, 12, 16, 0.52);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.wm-match-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    0 0 0 1px rgba(14, 18, 24, 0.45) inset,
    0 8px 18px rgba(0, 0, 0, 0.38),
    0 2px 6px rgba(0, 0, 0, 0.24);
  display: block;
  background: #1b222b;
}

.wm-match-image[src*="Orton-Drew"] {
  object-position: center 20%;
}

.wm-match-image[src*="liv-stephanie"] {
  aspect-ratio: 4 / 2.9;
  object-position: center 34%;
}

.wm-match-line {
  margin: 0.42rem 0 0.26rem;
  color: #f6ffea;
  font-weight: 700;
  font-size: 0.82rem;
}

.wm-poll-prompt {
  margin: 0 0 0.26rem;
  color: #cde0b2;
  font-size: 0.76rem;
}

.wm-poll-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.wm-vote-btn {
  --wm-pct: 0%;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(142, 220, 63, 0.72) 0%,
      rgba(142, 220, 63, 0.72) var(--wm-pct),
      rgba(10, 14, 18, 0.8) var(--wm-pct),
      rgba(10, 14, 18, 0.8) 100%
    );
  color: #ffffff;
  padding: 0.4rem 0.45rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition: background 0.28s ease, box-shadow 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

.wm-poll-options {
  margin-top: auto;
}

.wm-vote-btn:hover,
.wm-vote-btn:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.62), 0 0 12px rgba(142, 220, 63, 0.46);
}

.wm-vote-btn.is-leading {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.76), 0 0 16px rgba(142, 220, 63, 0.62);
}

.wm-vote-btn.is-user-choice {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8), 0 0 14px rgba(142, 220, 63, 0.62);
}

.wm-vote-btn:disabled {
  cursor: not-allowed;
}

.wm-poll-result {
  margin: 0.45rem 0 0;
  font-size: 0.74rem;
  color: #cde0b2;
}

.wm-mobile-teaser {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
}

.wm-mobile-teaser button {
  border: 1px solid rgba(142, 220, 63, 0.58);
  border-radius: 999px;
  background: rgba(10, 14, 18, 0.82);
  color: #e8f5d7;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.5rem 1.22rem;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.56), 0 0 12px rgba(142, 220, 63, 0.4);
}

.wm-mobile-teaser button:hover,
.wm-mobile-teaser button:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.72), 0 0 18px rgba(142, 220, 63, 0.62);
}

.wm-mobile-sheet {
  display: none;
}

.wm-mobile-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(142, 220, 63, 0.56);
  border-radius: 999px;
  background: rgba(10, 14, 18, 0.82);
  color: #e8f5d7;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  justify-self: end;
}

.wm-mobile-backdrop {
  display: none;
}

.wm-mobile-controls {
  display: none;
}

.wm-mobile-controls button {
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.wm-mobile-controls button:hover,
.wm-mobile-controls button:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.wm-mobile-controls span {
  min-width: 3.5rem;
  text-align: center;
  color: #d9e8c8;
  font-size: 0.72rem;
  font-weight: 800;
}

body.wm-poll-open {
  overflow: hidden;
}

body.wm-poll-open .wm-mobile-sheet {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0.4rem;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 2rem));
  max-height: min(680px, calc(100vh - 2rem));
  z-index: 1300;
  border: 1px solid rgba(142, 220, 63, 0.48);
  border-radius: 14px;
  background: rgba(8, 12, 16, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  padding: 0.55rem;
  overflow: auto;
}

body.wm-poll-open .wm-match-grid {
  display: block;
  min-height: 0;
}

body.wm-poll-open .wm-match {
  display: none;
  padding: 0.45rem;
  min-height: auto;
}

body.wm-poll-open .wm-match.is-mobile-active {
  display: flex;
}

body.wm-poll-open .wm-mobile-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

body.wm-poll-open .wm-mobile-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 1250;
  background: rgba(6, 10, 14, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}


.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1.05rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(232, 245, 215, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 14px rgba(142, 220, 63, 0.48);
}

.hero-dot.is-active {
  background: rgba(142, 220, 63, 0.98);
  border-color: rgba(142, 220, 63, 0.98);
  box-shadow: 0 0 14px rgba(142, 220, 63, 0.62);
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-return-mountain-pulse {
  0%,
  100% {
    opacity: 0.28;
    filter: brightness(0.96) saturate(1) drop-shadow(0 0 5px rgba(155, 255, 98, 0.2));
  }
  50% {
    opacity: 1;
    filter: brightness(1.68) saturate(1.3) drop-shadow(0 0 16px rgba(155, 255, 98, 0.58));
  }
}

@keyframes hero-return-text-shine-sweep {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  12% {
    clip-path: inset(0 90% 0 0);
  }
  48% {
    clip-path: inset(0 46% 0 40%);
  }
  82% {
    clip-path: inset(0 0 0 88%);
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}

.kicker {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  width: fit-content;
  justify-self: start;
}

h1 {
  margin: 0.4rem 0 0.2rem;
  line-height: 1.2;
  font-size: clamp(1.2rem, 2.7vw, 1.8rem);
  color: #f6ffea;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
  max-width: 48%;
}

.lead {
  margin: 0;
  color: #e8f5d7;
  max-width: 100%;
}

.cta-row {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-self: end;
  justify-self: start;
}

.hero .btn {
  position: relative;
  overflow: hidden;
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero .btn::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -40%;
  width: 34%;
  height: 280%;
  transform: rotate(25deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.hero .btn:hover::before,
.hero .btn:focus-visible::before {
  animation: pill-shine 0.8s ease;
}

.hero .btn:hover,
.hero .btn:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(142, 220, 63, 0.55),
    0 0 16px rgba(142, 220, 63, 0.5);
}

@keyframes pill-shine {
  from { left: -45%; }
  to { left: 125%; }
}

.media-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.news-carousel {
  width: 100%;
  max-width: none;
  border-radius: 12px;
  border: 1px solid var(--container-lime-border);
  background: var(--container-dark);
  color: #e8f5d7;
  box-shadow: 0 12px 22px rgba(14, 24, 34, 0.14);
  padding: 0.8rem;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 507.5px;
  height: 507.5px;
  display: flex;
  flex-direction: column;
}

.news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.news-source {
  font-size: 0.78rem;
  color: #d7e5ca;
}

.news-slide {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #e8f5d7;
  border-radius: 10px;
  padding: 0.55rem;
  border: 1px solid var(--container-lime-border);
  background: rgba(10, 14, 18, 0.42);
  min-height: 402px;
  height: 402px;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 196px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(142, 220, 63, 0.2);
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #1a2430 0%, #131b24 100%);
  padding: 6px;
}

#newsSlideTitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

#newsSlideSummary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.news-slide:hover,
.news-slide:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 14px rgba(142, 220, 63, 0.32);
}

.news-slide h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-slide p {
  margin: 0 0 0.35rem;
}

#newsSlideSummary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#newsSlideMeta {
  min-height: 1.2em;
  margin-top: auto;
  color: #f3ffe3;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-meta {
  font-size: 0.8rem;
  color: #d7e5ca;
}

.news-controls {
  margin-top: 0.55rem;
  display: flex;
  gap: 0.45rem;
}

.news-controls button {
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.news-controls button:hover,
.news-controls button:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.episodes-controls {
  margin-top: 0.15rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.episodes-controls button {
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.episodes-controls button:hover,
.episodes-controls button:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.episodes-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.episodes-carousel {
  margin-top: 0.75rem;
}

.episodes-viewport {
  overflow: hidden;
  width: 100%;
}

.episodes-track {
  --visible-count: 3;
  --episode-gap: 1rem;
  display: flex;
  gap: var(--episode-gap);
  transition: transform 0.28s ease;
  will-change: transform;
}

.episodes-item {
  flex: 0 0 calc((100% - (var(--episode-gap) * (var(--visible-count) - 1))) / var(--visible-count));
  min-width: 0;
  display: flex;
}

.episodes-item .card {
  height: 100%;
  min-height: 470px;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #c8ddb1;
}

.episodes-item .episode-card-title {
  margin-top: 0.2rem;
  color: #c7d8b0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.episodes-item .episode-card-desc {
  color: #c8ddb1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.35em;
  margin-bottom: 0.7rem;
}

.episodes-item .meta {
  color: #c8ddb1;
}

.episode-preview-btn-card {
  margin-top: auto;
  align-self: flex-start;
}

.video-card {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin-left: 0;
  border-radius: 12px;
  border: 1px solid var(--container-lime-border);
  background: var(--container-dark);
  color: #e8f5d7;
  box-shadow: 0 12px 22px rgba(14, 24, 34, 0.14);
  padding: 0.8rem;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.video-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.news-carousel:hover,
.news-carousel:focus-within,
.video-card:hover,
.video-card:focus-within {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 14px rgba(142, 220, 63, 0.32);
}

.latest-episode {
  border-radius: 10px;
  border: 1px solid var(--container-lime-border);
  background: rgba(10, 14, 18, 0.42);
  padding: 0.8rem;
}

.latest-episode:hover,
.latest-episode:focus-within {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 14px rgba(142, 220, 63, 0.32);
}

.latest-episode h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.latest-episode p {
  margin: 0 0 0.45rem;
}

#latestEpisodeAudio,
.episode-audio {
  display: none !important;
}

.episode-preview-btn {
  margin: 0.1rem 0 0.55rem;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.34rem 0.78rem;
  cursor: pointer;
}

.episode-preview-btn:hover,
.episode-preview-btn:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.episode-preview-btn[disabled] {
  opacity: 0.52;
  cursor: not-allowed;
  box-shadow: none;
}

.episode-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(142, 220, 63, 0.2);
  margin: 0 0 0.55rem;
  background: linear-gradient(180deg, #1a2430 0%, #131b24 100%);
  padding: 6px;
}

.episode-art-wrap {
  position: relative;
}

.episode-play-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(232, 245, 215, 0.78);
  background: rgba(255, 255, 255, 0.2);
  color: #f4ffe7;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-indent: 2px;
  letter-spacing: -0.01em;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.episode-play-overlay:hover,
.episode-play-overlay:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.58), 0 0 14px rgba(142, 220, 63, 0.42);
}

.episode-play-overlay:focus-visible {
  outline: 2px solid rgba(142, 220, 63, 0.78);
  outline-offset: 2px;
}

.episode-play-overlay:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.episode-play-overlay-card {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

#latestEpisodePlayOverlay {
  font-size: 0;
}

#latestEpisodePlayOverlay::before {
  content: "▶";
  font-size: 1.34rem;
  line-height: 1;
  transform: translate(2px, 2px);
}

.header-player-shell.is-live {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.46), 0 0 18px rgba(142, 220, 63, 0.28);
}

.btn {
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid #111;
  padding: 0.65rem 1.05rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(156, 255, 58, 0.25);
}

.btn-primary {
  background: var(--lime);
  color: #111;
}

.btn-secondary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--container-dark);
  color: #e8f5d7;
  border-radius: 14px;
  border: 1px solid var(--container-lime-border);
  box-shadow: 0 14px 30px rgba(14, 24, 34, 0.14), 0 2px 7px rgba(14, 24, 34, 0.07);
  padding: 1rem;
}

.card h2,
.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.announcement-card {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s ease;
}

.announcement-card.is-unread {
  animation: announcement-pulse 1.9s ease-in-out infinite;
}

.announcement-card:hover,
.announcement-card:focus-within {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.72), 0 0 18px rgba(142, 220, 63, 0.52);
}

.announcement-card.is-unread:hover,
.announcement-card.is-unread:focus-within {
  animation: none;
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.72), 0 0 18px rgba(142, 220, 63, 0.52);
}

@keyframes announcement-pulse {
  0% {
    box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.48), 0 0 12px rgba(142, 220, 63, 0.32);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.8), 0 0 26px rgba(142, 220, 63, 0.62);
  }
  100% {
    box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.48), 0 0 12px rgba(142, 220, 63, 0.32);
  }
}

.announcement-toggle {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.announcement-date {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: #d7e5ca;
  font-weight: 900;
}

.announcement-summary {
  margin: 0 0 0.4rem;
  color: #e8f5d7;
}

.announcement-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  color: #dff2c3;
}

.announcement-detail {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100vw - 2rem));
  max-height: calc(100vh - 6rem);
  overflow: auto;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--container-lime-border);
  background: linear-gradient(165deg, rgba(10, 14, 18, 0.94) 0%, rgba(22, 30, 38, 0.94) 100%);
  box-shadow: 0 14px 30px rgba(14, 24, 34, 0.2), 0 2px 7px rgba(14, 24, 34, 0.12);
  z-index: 1250;
  margin-top: 0;
  opacity: 0;
  transform: translate(-50%, -46%);
  transition: opacity 0.22s ease, transform 0.24s ease;
}

.announcement-card.is-open .announcement-detail {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.announcement-close {
  appearance: none;
  border: 1px solid rgba(142, 220, 63, 0.55);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  background: rgba(10, 10, 10, 0.4);
  color: #e8f5d7;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.announcement-close:hover,
.announcement-close:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.announcement-detail-date {
  margin: 0.45rem 0 0.35rem;
  font-size: 0.78rem;
  color: #d7e5ca;
  font-weight: 900;
}

.announcement-logo {
  float: right;
  width: min(120px, 28%);
  height: auto;
  margin: 0.1rem 0 0.45rem 0.8rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.announcement-detail-body {
  margin: 0 0 0.55rem;
}

.announcement-detail::after {
  content: "";
  display: block;
  clear: both;
}

.announcement-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 14, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1225;
}

body.is-announcement-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .announcement-detail {
    width: min(760px, calc(100vw - 1rem));
    max-height: calc(100vh - 3.5rem);
  }
}

.meta {
  font-size: 0.82rem;
  color: #d7e5ca;
  margin-bottom: 0.5rem;
}

.platform-links,
.social-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.platform-links a,
.social-links a {
  color: #e8f5d7;
  font-weight: 800;
}

.site-footer .legal-links a {
  color: #dff2c3;
  font-weight: 800;
}

.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  position: relative;
}

.site-footer .brand {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.site-footer .brand > div {
  margin-left: 0;
  text-align: center;
}

.site-footer .legal-links {
  justify-content: center;
}

.footer-social {
  justify-content: center;
}

.footer-contact {
  position: absolute;
  right: 0.2rem;
  bottom: 0.7rem;
  left: auto;
  text-align: left;
}

.footer-contact-line {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.25;
  color: #dff2c3;
  white-space: nowrap;
}

.footer-contact-email {
  color: #c7d8b0;
  font-weight: 900;
  text-decoration: underline;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.footer-contact-email:hover,
.footer-contact-email:focus-visible {
  color: #d5e3c4;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.embed-wrap {
  margin-top: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--container-lime-border);
  background: var(--container-dark);
  box-shadow: 0 14px 30px rgba(14, 24, 34, 0.14), 0 2px 7px rgba(14, 24, 34, 0.07);
}

.embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

.section-title {
  margin: 2rem 0 0.7rem;
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow:
    -1px -1px 0 var(--lime),
    1px -1px 0 var(--lime),
    -1px 1px 0 var(--lime),
    1px 1px 0 var(--lime);
}

.footer-note {
  margin: 0;
  font-size: 0.88rem;
  color: #d7e5ca;
}

.footer-credit {
  margin: 0.04rem 0 0;
  font-size: 0.68rem;
  line-height: 1.2;
  color: #c6d6b4;
}

.footer-location {
  margin: 0.05rem 0 0.12rem;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #d7e5ca;
}

.policy-content {
  background: var(--container-dark);
  color: #e8f5d7;
  border: 1px solid var(--container-lime-border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(14, 24, 34, 0.14), 0 2px 7px rgba(14, 24, 34, 0.07);
}

.policy-content h1 { margin-top: 0; }

.listen-hub {
  max-width: 760px;
  margin: 0 auto;
}

.listen-tree {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.listen-node {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid var(--container-lime-border);
  background: rgba(10, 14, 18, 0.42);
  color: #e8f5d7;
  padding: 0.8rem 0.9rem;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.listen-node-title {
  display: block;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.2;
}

.listen-node-meta {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.84rem;
  color: #d7e5ca;
}

.listen-node:hover,
.listen-node:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.6), 0 0 14px rgba(142, 220, 63, 0.4);
}

.listen-node.is-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.listen-node.is-disabled:hover,
.listen-node.is-disabled:focus-visible {
  transform: none;
  box-shadow: none;
}

.about-page-title {
  margin: 0 0 1rem;
  display: inline-block;
  width: fit-content;
  max-width: none;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.about-origin {
  margin-top: 0;
  background: linear-gradient(165deg, rgba(10, 14, 18, 0.9) 0%, rgba(22, 30, 38, 0.9) 100%);
  border: 1px solid var(--container-lime-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(142, 220, 63, 0.38),
    0 0 16px rgba(142, 220, 63, 0.28);
}

.news-slide:hover,
.news-slide:focus-visible,
.latest-episode:hover,
.latest-episode:focus-within,
.news-carousel:hover,
.news-carousel:focus-within,
.video-card:hover,
.video-card:focus-within {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.6), 0 0 16px rgba(142, 220, 63, 0.44);
}

.about-origin p {
  color: #e8f5d7;
}

.policy-page main {
  display: grid;
  align-items: center;
}

.archive-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.archive-item .episode-image {
  width: 220px;
  max-width: 100%;
  height: 220px;
  margin: 0 auto 0.55rem;
  display: block;
}

.host-profile {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.host-profile {
  position: relative;
}

.host-state-flag {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(130px, 18.5vw, 188px);
  height: auto;
}


.hosts-showcase {
  margin-top: 1rem;
}

.hosts-title {
  margin-bottom: 0.7rem;
}

.hosts-hint {
  margin: -0.1rem 0 0.8rem;
  font-size: 0.86rem;
  color: #d7e5ca;
}

.host-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
}

.host-card {
  appearance: none;
  border: 1px solid var(--container-lime-border);
  border-radius: 14px;
  background: rgba(10, 14, 18, 0.42);
  padding: 0.6rem;
  color: #e8f5d7;
  text-align: left;
  cursor: pointer;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.2s ease;
}

.host-card:hover,
.host-card:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.6), 0 0 14px rgba(142, 220, 63, 0.4);
}

.host-card-photo {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid rgba(142, 220, 63, 0.22);
  display: block;
  background: linear-gradient(180deg, #1a2430 0%, #131b24 100%);
}

.host-card-name {
  display: block;
  margin-top: 0.45rem;
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1.22;
}

.host-card-cta {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #dff2c3;
}

.host-card-teaser {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.79rem;
  line-height: 1.3;
  color: #d7e5ca;
}

@media (min-width: 961px) {
  .host-card:hover .host-card-teaser,
  .host-card:focus-visible .host-card-teaser {
    display: block;
  }
}

.host-detail-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(690px, calc(100vw - 2rem));
  max-height: calc(100vh - 6rem);
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--container-lime-border);
  background: linear-gradient(165deg, rgba(10, 14, 18, 0.9) 0%, rgba(22, 30, 38, 0.9) 100%);
  box-shadow: 0 14px 30px rgba(14, 24, 34, 0.14), 0 2px 7px rgba(14, 24, 34, 0.07);
  padding: 0.8rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -47%);
  z-index: 1150;
  transition: opacity 0.24s ease, transform 0.28s ease, visibility 0s linear 0.24s;
}

.hosts-showcase.is-open .host-detail-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: opacity 0.24s ease, transform 0.28s ease, visibility 0s linear 0s;
}

.host-detail-panel .host-profile {
  margin-top: 0;
}

.host-detail-close {
  appearance: none;
  border: 1px solid rgba(142, 220, 63, 0.55);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  background: rgba(10, 10, 10, 0.44);
  color: #e8f5d7;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 0.45rem;
}

.host-detail-close:hover,
.host-detail-close:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

.host-detail-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 14, 0.66);
  backdrop-filter: blur(1.5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1125;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.hosts-showcase.is-open .host-detail-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.24s ease, visibility 0s linear 0s;
}

body.is-host-detail-open {
  overflow: hidden;
}

.host-photo {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(42, 47, 52, 0.25);
  background: linear-gradient(180deg, #eef2f7 0%, #dfe6ef 100%);
  padding: 6px;
}

.host-copy {
  padding-right: 0;
}

.host-copy h2 {
  margin: 0.2rem 0 0.55rem;
}

.host-role {
  margin: 0;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #0e1111;
  color: #f3ffe3;
  border: 1px solid var(--lime);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(360px, calc(100vw - 2rem));
  background: linear-gradient(165deg, #0e1111 0%, #1a232e 100%);
  border: 1px solid rgba(142, 220, 63, 0.72);
  border-radius: 14px;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(142, 220, 63, 0.3),
    0 0 14px rgba(142, 220, 63, 0.24);
  padding: 0.85rem;
  color: #f3ffe3;
  z-index: 1200;
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s ease, opacity 0.28s ease;
}

.cookie-banner.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.is-hiding {
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: #dff2c3;
  font-weight: 800;
}

.cookie-banner-actions {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
}

.cookie-banner-accept {
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: #0e1111;
  color: #f3ffe3;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.36rem 0.7rem;
  cursor: pointer;
}

.cookie-banner-accept:hover,
.cookie-banner-accept:focus-visible {
  box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.55), 0 0 12px rgba(142, 220, 63, 0.42);
}

@media (max-width: 960px) {
  .grid { grid-template-columns: 1fr; }
  .media-row { grid-template-columns: 1fr; }
  .news-carousel {
    height: auto;
    min-height: 456px;
  }
  .news-slide {
    height: auto;
    min-height: 350px;
  }
  .episodes-track { --visible-count: 2; }
  .host-profile { grid-template-columns: 1fr; }
  .host-state-flag {
    position: static;
    width: min(194px, 60vw);
    margin: 0 0 0.55rem auto;
  }

  .host-copy {
    padding-right: 0;
  }
  .host-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .host-cards {
    grid-template-columns: 1fr;
  }
  .host-detail-panel {
    width: min(740px, calc(100vw - 1rem));
    max-height: calc(100vh - 4rem);
  }
  .hero {
    min-height: 360px;
    background-position: center;
    gap: 0.8rem;
  }
  .hero > * {
    max-width: 100%;
  }
  .hero-slide > * {
    max-width: 100%;
  }
  .hero-slide-return {
    gap: 0.7rem;
  }
  .hero-slide-polls {
    padding: 1rem 0.8rem;
  }
  .wm-poll-header h3 {
    font-size: 0.72rem;
  }
  .wm-poll-header p {
    font-size: 0.86rem;
  }
  .wm-match-grid {
    display: block;
    min-height: 100%;
  }
  .wm-match {
    display: none;
    padding: 0.55rem;
    min-height: 100%;
  }
  .wm-match.is-mobile-active {
    display: flex;
  }
  .wm-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.5rem;
  }
  .wm-mobile-controls button {
    border: 1px solid rgba(142, 220, 63, 0.58);
    border-radius: 999px;
    background: rgba(10, 14, 18, 0.82);
    color: #e8f5d7;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.28rem 0.65rem;
    cursor: pointer;
  }
  .wm-mobile-controls button:hover,
  .wm-mobile-controls button:focus-visible {
    box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.56), 0 0 12px rgba(142, 220, 63, 0.4);
  }
  .wm-mobile-controls span {
    min-width: 3.5rem;
    text-align: center;
    color: #d9e8c8;
    font-size: 0.72rem;
    font-weight: 800;
  }
  .wm-mobile-teaser {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
  }
  .wm-mobile-teaser button {
    border: 1px solid rgba(142, 220, 63, 0.58);
    border-radius: 999px;
    background: rgba(10, 14, 18, 0.82);
    color: #e8f5d7;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 1.22rem;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.56), 0 0 12px rgba(142, 220, 63, 0.4);
  }
  .wm-mobile-teaser button:hover,
  .wm-mobile-teaser button:focus-visible {
    box-shadow: 0 0 0 1px rgba(142, 220, 63, 0.72), 0 0 18px rgba(142, 220, 63, 0.62);
  }
  .wm-mobile-sheet {
    display: none;
  }
  .wm-mobile-sheet-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(142, 220, 63, 0.56);
    border-radius: 999px;
    background: rgba(10, 14, 18, 0.82);
    color: #e8f5d7;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    justify-self: end;
  }
  body.wm-poll-open {
    overflow: hidden;
  }
  body.wm-poll-open .wm-mobile-sheet {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 0.28rem;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, calc(100vw - 1.2rem));
    max-height: min(560px, calc(100vh - 1.4rem));
    z-index: 1300;
    border: 1px solid rgba(142, 220, 63, 0.48);
    border-radius: 14px;
    background: rgba(8, 12, 16, 0.9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    padding: 0.45rem;
    overflow: auto;
  }
  body.wm-poll-open .wm-match-grid {
    min-height: 0;
  }
  body.wm-poll-open .wm-match.is-mobile-active {
    display: block;
  }
  body.wm-poll-open .wm-match {
    padding: 0.38rem;
    min-height: auto;
  }
  body.wm-poll-open .wm-match-image {
    aspect-ratio: 16 / 5.8;
  }
  body.wm-poll-open .wm-match-line {
    margin: 0.24rem 0 0.1rem;
    font-size: 0.72rem;
  }
  body.wm-poll-open .wm-poll-prompt {
    margin: 0 0 0.1rem;
    font-size: 0.64rem;
  }
  body.wm-poll-open .wm-poll-options {
    margin-top: 0;
    gap: 0.26rem;
  }
  body.wm-poll-open .wm-vote-btn {
    padding: 0.24rem 0.34rem;
    font-size: 0.62rem;
  }
  body.wm-poll-open .wm-poll-result {
    margin-top: 0.2rem;
    font-size: 0.64rem;
  }
  body.wm-poll-open .wm-mobile-controls {
    margin-top: 0;
    padding-top: 0;
    gap: 0.42rem;
  }
  body.wm-poll-open .wm-mobile-controls button {
    padding: 0.24rem 0.58rem;
    font-size: 0.68rem;
  }
  body.wm-poll-open .wm-mobile-controls span {
    min-width: 3rem;
    font-size: 0.68rem;
  }
  body.wm-poll-open .wm-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1250;
    background: rgba(6, 10, 14, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .hero-carousel-dots {
    bottom: 0.75rem;
  }
  .about-page-title {
    max-width: 100%;
    font-size: clamp(0.9rem, 3.8vw, 1.08rem);
    white-space: normal;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
    position: relative;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-sub {
    margin-top: 0.12rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header .header-social,
  .site-header .nav-links {
    display: flex;
    width: 100%;
    grid-column: 1 / -1;
    border-radius: 12px;
    border: 0;
    background: rgba(12, 16, 20, 0.94);
    padding: 0 0.65rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateX(-108%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s ease,
      opacity 0.22s ease,
      max-height 0.28s ease,
      padding 0.2s ease,
      margin 0.2s ease,
      border-color 0.2s ease,
      visibility 0s linear 0.28s;
  }

  .site-header .header-inner.is-menu-open .header-social,
  .site-header .header-inner.is-menu-open .nav-links {
    border: 1px solid rgba(142, 220, 63, 0.45);
    padding: 0.55rem 0.65rem;
    margin: 0.1rem 0 0;
    max-height: 320px;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.28s ease,
      opacity 0.22s ease,
      max-height 0.28s ease,
      padding 0.2s ease,
      margin 0.2s ease,
      border-color 0.2s ease,
      visibility 0s linear 0s;
  }

  .site-header .header-social {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    order: 3;
  }

  .site-header .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    order: 4;
  }

  .site-header .nav-links a {
    width: 100%;
    padding: 0.38rem 0.12rem;
  }

  .header-player-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "art main"
      "controls controls";
    align-items: center;
    gap: 0.4rem 0.5rem;
    position: fixed;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.6rem;
    width: auto;
    min-width: 0;
    border-radius: 12px;
    border: 1px solid rgba(142, 220, 63, 0.44);
    background: rgba(10, 14, 18, 0.88);
    box-shadow: 0 8px 22px rgba(5, 9, 14, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.44rem 0.5rem 0.5rem;
    z-index: 95;
  }

  .header-player-art-wrap {
    grid-area: art;
    width: 42px;
    height: 42px;
  }

  .header-player-main {
    grid-area: main;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.04rem;
    row-gap: 0.16rem;
    align-items: center;
  }

  .header-player-kicker {
    display: none;
  }

  .header-player-title {
    grid-column: 1 / -1;
    margin: 0 0 0.1rem;
    font-size: 0.76rem;
  }

  .header-player-scrub {
    grid-column: 1 / 2;
    width: 100%;
    max-width: none;
  }

  .header-player-time {
    grid-column: 2 / 3;
    justify-self: start;
    min-width: 0;
    width: max-content;
    margin-left: 0;
    font-size: 0.66rem;
  }

  .header-player-controls {
    grid-area: controls;
    width: 100%;
    justify-content: flex-start;
    gap: 0.3rem;
    margin-top: 0.06rem;
    flex-wrap: nowrap;
  }

  .header-player-control,
  .header-player-mute,
  .header-player-close {
    width: 30px;
    height: 30px;
    border-width: 1px;
    background: rgba(10, 14, 18, 0.9);
  }

  .header-player-mute svg {
    width: 20px;
    height: 20px;
    transform: none;
  }

  .header-player-control {
    font-size: 0.9rem;
  }

  .header-player-close {
    font-size: 1rem;
    order: 99;
    margin-left: auto;
  }

  .header-player-volume {
    margin-left: 0;
    gap: 0.4rem;
  }

  .header-player-prev,
  .header-player-next {
    font-size: 0.66rem;
  }

  .header-player-shell.is-volume-open .header-player-volume-slider {
    width: 72px;
  }

  body.has-mobile-player-open {
    padding-bottom: 132px;
  }

  .site-footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: static;
  }
  .site-footer .legal-links {
    justify-content: center;
  }
  .footer-contact {
    position: static;
    text-align: center;
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 680px) {
  .episodes-track { --visible-count: 1; }
  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: min(360px, calc(100vw - 1.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
  body.home-page::after {
    animation: none;
  }
  body.has-page-reveal main,
  body.has-page-reveal.is-content-ready main {
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .hero-slide-return.is-active .hero-return-mountains,
  .hero-slide-return.is-active .hero-return-text-shine::before {
    animation: none;
  }
}

/* Keep replay glyph visually matched to play glyph */
.header-player-replay {
  font-size: 1.16rem;
  line-height: 0.86;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
}

/* Replay glyph alignment: move only glyph, not the button circle */
.header-player-replay {
  position: relative;
  color: transparent;
  font-size: 1.16rem;
  line-height: 1;
}

.header-player-replay::before {
  content: "↻";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -57%);
  color: #e8f5d7;
  font-size: 1.24rem;
  line-height: 1;
  pointer-events: none;
}

/* Play/Pause glyph alignment: nudge only play icon, keep pause centered */
.header-player-play.is-paused {
  text-indent: 0;
}

.header-player-play.is-playing {
  text-indent: 0;
}

.header-player-play.is-paused:not([aria-pressed="true"]) {
  text-indent: 2px;
}

/* Replay click animation: spin once then settle */
@keyframes tbr-replay-spin {
  from { transform: translate(-50%, -57%) rotate(0deg); }
  to { transform: translate(-50%, -57%) rotate(360deg); }
}

.header-player-replay.is-spinning::before {
  animation: tbr-replay-spin 0.5s ease;
}

.header-player-prev,
.header-player-next {
  font-size: 0.72rem;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .header-player-replay.is-spinning::before {
    animation: none;
  }
}
