:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #10141c;
  --line: rgba(224, 187, 95, .44);
  --gold: #e7bf58;
  --gold-soft: #8d692b;
  --text: #f6f1e8;
  --muted: #c1b8a9;
  --topbar-height: 56px;
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(104, 74, 27, .18), transparent 40%),
    #05070a;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.watch-topbar {
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, .97);
  position: relative;
  z-index: 20;
}
.watch-shell {
  width: min(1580px, calc(100% - 1.25rem));
  height: calc(100vh - var(--topbar-height));
  margin: 0 auto;
  padding: .65rem 0;
}
.watch-stage {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.58fr);
  gap: .7rem;
}
.watch-summary {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 53%) minmax(0, 47%);
  gap: .7rem;
}
.watch-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background-color: #020305;
  background-image:
    linear-gradient(to top, rgba(4, 6, 9, .98), rgba(4, 6, 9, .04) 72%),
    var(--hero-image);
  background-position: center bottom, center top;
  background-size: cover, contain;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 220, 125, .05);
}
.watch-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 6, 9, .72), transparent 82%);
}
.watch-copy {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: clamp(.85rem, 2vw, 1.5rem);
}
.watch-kicker {
  margin: 0 0 .25rem;
  color: var(--gold);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .15em;
}
h1 {
  max-width: 12ch;
  margin: .15rem 0 .5rem;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.85rem);
  line-height: .95;
}
h2 {
  margin: .15rem 0 .45rem;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.03;
}
.watch-meta,
.watch-description,
.watch-details p {
  color: var(--muted);
  line-height: 1.45;
}
.watch-meta { margin: 0 0 .35rem; font-size: .88rem; }
.watch-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: .95rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.review-notice { display: none; }
.watch-player {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: .65rem;
  display: grid;
  grid-template-rows: 34px minmax(0, 1fr);
  border: 2px solid var(--gold-soft);
  border-radius: .95rem;
  background:
    linear-gradient(135deg, rgba(255, 222, 132, .12), transparent 18% 82%, rgba(255, 222, 132, .12)),
    #020305;
  box-shadow:
    inset 0 0 0 1px rgba(250, 216, 123, .34),
    inset 0 0 0 7px #050608,
    0 1.2rem 4rem rgba(0, 0, 0, .48);
}
.watch-player::before,
.watch-player::after {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 54px;
  height: 54px;
  border-color: var(--gold);
  opacity: .78;
}
.watch-player::before {
  top: 8px;
  left: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.watch-player::after {
  right: 8px;
  bottom: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}
.screen-crown {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-shadow: 0 0 18px rgba(231, 191, 88, .35);
}
.screen-crown span {
  padding: .2rem 1.25rem;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.screen-inner {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 191, 88, .3);
  border-radius: .55rem;
  background: #000;
}
.watch-player video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #000;
}
.watch-details {
  min-height: 0;
  margin: 0;
  padding: .8rem;
  display: grid;
  grid-template-columns: minmax(78px, 112px) minmax(0, 1fr);
  gap: .85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: .85rem;
  background: rgba(16, 20, 28, .96);
}
.watch-details img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: .5rem;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 .7rem 2rem rgba(0, 0, 0, .42);
}
.watch-details article {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
}
.watch-details article > p:not(.watch-kicker):not(.rights-state) {
  margin: 0;
  font-size: .9rem;
}
.detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .65rem 0 0;
}
.detail-grid span {
  padding: .28rem .52rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e2dacb;
  font-size: .74rem;
}
.rights-state { display: none; }
.watch-footer { display: none; }
@media (max-width: 960px), (max-height: 650px) {
  body { overflow: auto; }
  .watch-shell { width: min(1180px, calc(100% - 1rem)); height: auto; }
  .watch-stage { display: grid; grid-template-columns: 1fr; }
  .watch-summary { grid-template-rows: auto auto; }
  .watch-hero { min-height: 24rem; }
  .watch-player { min-height: min(70vh, 38rem); }
  .watch-details { min-height: 19rem; }
  .watch-footer {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  :root { --topbar-height: 52px; }
  .watch-topbar { font-size: .84rem; padding: .55rem .8rem; }
  .watch-stage { gap: .55rem; }
  .watch-hero { min-height: 20rem; }
  .watch-player { min-height: 52vh; padding: .45rem; grid-template-rows: 30px minmax(0,1fr); }
  .screen-crown { font-size: .68rem; }
  .watch-details { grid-template-columns: 84px minmax(0,1fr); padding: .65rem; }
}
/* SAGE WATCH CONTROL PATCH — 2026-07-22 */
.screen-crown {
  justify-content: space-between;
  gap: .5rem;
  padding: 0 .35rem 0 .65rem;
}
.screen-actions {
  display: flex;
  align-items: center;
  gap: .38rem;
}
.screen-actions button {
  padding: .34rem .62rem;
  border: 1px solid rgba(231, 191, 88, .52);
  border-radius: 999px;
  background: rgba(10, 12, 16, .96);
  color: #f3d98d;
  font: inherit;
  font-size: .7rem;
  line-height: 1;
  cursor: pointer;
}
.screen-actions button:hover,
.screen-actions button:focus-visible {
  border-color: #e7bf58;
  outline: none;
}
.screen-actions button:disabled {
  cursor: default;
  opacity: .45;
}
.screen-inner {
  position: relative;
}
.movie-removed-message {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #020305;
  color: #e7bf58;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  text-align: center;
}
.movie-removed-message[hidden] {
  display: none;
}
.watch-player.movie-is-removed video {
  visibility: hidden;
}
@media (max-width: 640px) {
  .watch-player {
    grid-template-rows: 38px minmax(0, 1fr);
  }
  .screen-crown {
    padding: 0 .15rem 0 .35rem;
  }
  .screen-crown > span {
    font-size: .57rem;
    letter-spacing: .09em;
    padding-left: .35rem;
    padding-right: .35rem;
  }
  .screen-actions {
    gap: .22rem;
  }
  .screen-actions button {
    padding: .3rem .43rem;
    font-size: .61rem;
  }
}
