:root {
  --watch-ink: #102f3b;
  --watch-muted: #58707a;
  --watch-navy: #063b52;
  --watch-blue: #087ea4;
  --watch-aqua: #12a7bd;
  --watch-coral: #ff6331;
  --watch-paper: #f7fafb;
  --watch-line: #d8e5e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 167, 189, 0.13), transparent 32rem),
    linear-gradient(180deg, #ffffff 0, var(--watch-paper) 42rem);
  color: var(--watch-ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--watch-blue);
}

.watch-header {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 12px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.watch-logo img {
  display: block;
  width: 150px;
  height: auto;
}

.watch-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.watch-nav a {
  color: var(--watch-navy);
  text-decoration: none;
}

.watch-nav-cta {
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  background: var(--watch-coral);
  color: #ffffff !important;
}

.watch-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.watch-intro {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.watch-kicker {
  margin: 0 0 8px;
  color: var(--watch-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.watch-intro h1 {
  margin: 0;
  color: var(--watch-navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.15rem, 5vw, 4.15rem);
  line-height: 1.03;
}

.watch-lede {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--watch-muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.watch-stage {
  overflow: hidden;
  border: 1px solid rgba(6, 59, 82, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(8, 126, 164, 0.2), transparent 46%),
    var(--watch-navy);
  box-shadow: 0 24px 60px rgba(6, 59, 82, 0.22);
}

.watch-player {
  position: relative;
  width: 100%;
  background: #000000;
}

.watch-player-landscape {
  aspect-ratio: 16 / 9;
}

.watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-stage-vertical {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(320px, 1fr);
  gap: 0;
  align-items: center;
}

.watch-vertical-player-wrap {
  display: flex;
  min-height: 720px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  background: #031f2b;
}

.watch-player-vertical {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.watch-chapters {
  padding: 30px;
  color: #ffffff;
}

.watch-chapters h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
}

.watch-chapters-intro {
  margin: 8px 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.chapter-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.chapter-link {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.chapter-link:hover,
.chapter-link:focus-visible,
.chapter-link.is-active {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(18, 167, 189, 0.28);
  transform: translateX(4px);
}

.chapter-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.chapter-time {
  color: #8fe9f2;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.chapter-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.watch-meta {
  display: flex;
  margin: 16px 2px 0;
  justify-content: space-between;
  gap: 16px;
  color: var(--watch-muted);
  font-size: 0.85rem;
}

.watch-support {
  display: grid;
  max-width: 960px;
  margin: 48px auto 0;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.watch-card {
  padding: 26px;
  border: 1px solid var(--watch-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(16, 47, 59, 0.07);
}

.watch-card h2 {
  margin: 0 0 10px;
  color: var(--watch-navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
}

.watch-card p {
  margin: 0;
}

.watch-card p + p {
  margin-top: 12px;
}

.watch-card ul {
  margin: 12px 0 0;
  padding-left: 1.15rem;
}

.watch-card li + li {
  margin-top: 7px;
}

.watch-transcript {
  max-width: 960px;
  margin: 26px auto 0;
  padding: 26px;
  border: 1px solid var(--watch-line);
  border-radius: 16px;
  background: #ffffff;
}

.watch-transcript summary {
  color: var(--watch-navy);
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.watch-transcript p {
  margin: 18px 0 0;
}

.watch-cta {
  display: flex;
  max-width: 960px;
  margin: 26px auto 0;
  padding: 24px 26px;
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--watch-navy);
  color: #ffffff;
}

.watch-cta h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
}

.watch-cta p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.watch-cta a {
  display: inline-flex;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--watch-coral);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.watch-footer {
  padding: 26px 16px 36px;
  color: var(--watch-muted);
  font-size: 0.82rem;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 880px) {
  .watch-stage-vertical {
    grid-template-columns: 1fr;
  }

  .watch-vertical-player-wrap {
    min-height: 0;
  }

  .watch-player-vertical {
    width: min(100%, 430px);
  }

  .watch-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .watch-header {
    padding-top: 16px;
  }

  .watch-logo img {
    width: 125px;
  }

  .watch-nav a:not(.watch-nav-cta) {
    display: none;
  }

  .watch-page {
    padding-top: 22px;
  }

  .watch-intro {
    margin-bottom: 20px;
  }

  .watch-stage {
    border-radius: 14px;
  }

  .watch-vertical-player-wrap {
    padding: 14px;
  }

  .watch-player-vertical {
    width: min(100%, 360px);
  }

  .watch-chapters {
    padding: 22px 16px;
  }

  .watch-meta,
  .watch-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .watch-support {
    margin-top: 36px;
  }
}

