/* ==========================================================================
   WATCH — the player, the queue, and the cards that point at them.

   The player itself is the hub's, reused: same facade, same poster, same lit
   panel behind it. What this adds is the layout around it and the card shapes
   the rest of the site uses to recommend a video.
   ========================================================================== */

/* -------------------------------- kinds -------------------------------- *
   The label is the promise: Official means Rockstar said it, and everything
   else is somebody's reading. The colours keep those apart at a glance. */
.kind {
  display: inline-block; padding: 0.18rem 0.5rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.02em;
  border: 1px solid; white-space: nowrap;
}
.kind--official  { color: var(--lime);   border-color: rgba(214, 255, 63, 0.5); background: rgba(214, 255, 63, 0.10); }
.kind--analysis  { color: #9ED9FF;       border-color: rgba(158, 217, 255, 0.45); background: rgba(158, 217, 255, 0.08); }
.kind--world     { color: #8FE3C0;       border-color: rgba(143, 227, 192, 0.45); background: rgba(143, 227, 192, 0.08); }
.kind--character { color: #E4C7FF;       border-color: rgba(228, 199, 255, 0.45); background: rgba(228, 199, 255, 0.08); }
.kind--theory    { color: var(--sunset); border-color: rgba(255, 113, 61, 0.5);  background: rgba(255, 113, 61, 0.09); }
.kind--reaction  { color: #FFD36E;       border-color: rgba(255, 211, 110, 0.45); background: rgba(255, 211, 110, 0.08); }

/* ------------------------------- layout ------------------------------- */
.watch { display: grid; grid-template-columns: minmax(0, 1.72fr) minmax(0, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); align-items: start; }
.watch__stage { aspect-ratio: 16 / 9; position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }

.nowplay { margin-top: 1.25rem; display: grid; gap: 0.5rem; justify-items: start; }
.nowplay__kind { margin: 0; }
.nowplay__t { margin: 0; color: var(--cream); font-size: clamp(1.25rem, 2.3vw, 1.75rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; }
.nowplay__blurb { margin: 0; color: var(--cream-dim); font-size: 1rem; line-height: 1.6; max-width: 70ch; }
.nowplay__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; margin: 0.15rem 0 0; }
.nowplay__ch, .nowplay__src {
  color: var(--lime); font-weight: 700; font-size: 0.9375rem; text-decoration: none;
  border-bottom: 1px solid rgba(214, 255, 63, 0.35); padding-block: 6px; display: inline-block;
}
.nowplay__note { margin: 0.3rem 0 0; color: var(--cream-dim); font-size: 0.875rem; line-height: 1.55; max-width: 66ch; }

/* -------------------------------- queue -------------------------------- */
.watch__side {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); padding: 1rem; position: sticky; top: 1rem;
}
.watch__sidehead { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.85rem; }
.watch__sideh { margin: 0; color: var(--cream); font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.autonext { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--cream-dim); font-size: 0.875rem; cursor: pointer; min-height: 36px; }
.autonext input { accent-color: var(--lime); width: 18px; height: 18px; }

.filters--watch { gap: 0.4rem; margin-bottom: 0.6rem; }
.filters--watch .filter { padding: 0.35rem 0.75rem; font-size: 0.875rem; min-height: 36px; }

.queue { display: grid; gap: 0.5rem; max-height: 62vh; overflow-y: auto; padding-right: 0.25rem; }
.queue::-webkit-scrollbar { width: 8px; }
.queue::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.qrow {
  display: flex; gap: 0.75rem; align-items: stretch; text-align: left; cursor: pointer;
  font: inherit; color: inherit; padding: 0.5rem; min-height: 44px;
  border: 1px solid transparent; border-radius: var(--radius); background: transparent;
}
.qrow[hidden] { display: none; }
.qrow:hover { background: var(--surface-2); border-color: var(--line); }
.qrow.is-on { border-color: var(--lime); background: rgba(214, 255, 63, 0.08); }
.qrow:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.qrow__media { position: relative; flex: none; width: 116px; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden; background: #06090A; }
.qrow__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qrow__dur {
  position: absolute; right: 4px; bottom: 4px; background: rgba(4, 6, 7, 0.88);
  color: var(--cream); font-size: 0.75rem; font-weight: 700; border-radius: 3px; padding: 0.05rem 0.3rem;
}
.qrow__b { display: grid; gap: 0.2rem; align-content: start; min-width: 0; }
.qrow__kind { justify-self: start; }
.qrow__t { color: var(--cream); font-weight: 700; font-size: 0.9375rem; line-height: 1.3; }
.qrow__meta { color: var(--cream-dim); font-size: 0.8125rem; }
.qrow__off { color: var(--sunset); font-size: 0.8125rem; font-weight: 700; }

/* ------------------------------ the key ------------------------------ */
.kkey { display: grid; gap: 0.75rem; margin-bottom: 1.25rem; }
.kkey__row { display: grid; grid-template-columns: 9.5rem minmax(0, 1fr); gap: 1rem; align-items: baseline; }
.kkey__note { color: var(--cream-dim); font-size: 0.9375rem; line-height: 1.55; }

/* ==========================================================================
   THE RECOMMENDATION CARD — used on every other page
   ========================================================================== */
.vcards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.vcard__link {
  display: grid; grid-template-columns: minmax(0, 200px) minmax(0, 1fr); gap: 1rem;
  text-decoration: none; overflow: hidden; height: 100%;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface);
  padding: 0.6rem;
}
.vcard__link:hover, .vcard__link:focus-visible { border-color: var(--lime); }
.vcard__link:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.vcard__media { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; background: #06090A; }
.vcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1); }
.vcard__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  transition: background 200ms ease;
}
.vcard__play::before {
  content: ""; width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(242, 238, 230, 0.92); background: rgba(4, 6, 7, 0.6);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.vcard__tri {
  position: absolute; width: 0; height: 0; margin-left: 4px;
  border-left: 13px solid var(--cream); border-top: 8px solid transparent; border-bottom: 8px solid transparent;
  transition: border-left-color 200ms ease;
}
.vcard__dur {
  position: absolute; right: 6px; bottom: 6px; background: rgba(4, 6, 7, 0.88);
  color: var(--cream); font-size: 0.8125rem; font-weight: 700; border-radius: 4px; padding: 0.08rem 0.35rem;
}
.vcard__body { display: grid; gap: 0.35rem; align-content: center; padding-right: 0.5rem; }
.vcard__kind { justify-self: start; }
.vcard__t { color: var(--cream); font-weight: 800; font-size: 1rem; line-height: 1.3; letter-spacing: -0.01em; }
.vcard__meta { color: var(--cream-dim); font-size: 0.875rem; }
.watchrec__more { margin: 1.25rem 0 0; }

@media (hover: hover) and (pointer: fine) {
  .vcard__link:hover .vcard__media img { transform: scale(1.06); }
  .vcard__link:hover .vcard__play::before { background: var(--lime); border-color: var(--lime); transform: scale(1.06); }
  .vcard__link:hover .vcard__tri { border-left-color: var(--lime-ink); }
}

/* ==========================================================================
   THE SHOPPING MODULE
   ========================================================================== */
.srow { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.sitem {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.25rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 0.9rem 1.1rem;
}
.sitem__b { display: grid; gap: 0.15rem; min-width: 0; }
.sitem__t { color: var(--cream); font-weight: 800; font-size: 1rem; }
.sitem__d { color: var(--cream-dim); font-size: 0.9375rem; line-height: 1.5; max-width: 64ch; }
.sitem__go { flex: none; }
.shoprec__disc { margin: 0.9rem 0 0; color: var(--cream-dim); font-size: 0.875rem; line-height: 1.55; max-width: 78ch; }
.shoprec__more { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 0; }
.shoprec--panel .srow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shoprec--panel .sitem { flex-direction: column; align-items: flex-start; }

/* ------------------------------- narrow ------------------------------- */
@media (max-width: 1100px) {
  .watch { grid-template-columns: minmax(0, 1fr); }
  .watch__side { position: static; max-height: none; }
  .queue { max-height: none; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shoprec--panel .srow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .vcards { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 680px) {
  .queue { grid-template-columns: minmax(0, 1fr); }
  .vcard__link { grid-template-columns: minmax(0, 1fr); }
  .shoprec--panel .srow { grid-template-columns: minmax(0, 1fr); }
  .kkey__row { grid-template-columns: minmax(0, 1fr); gap: 0.25rem; }
  .watch__sidehead { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  .vcard__media img, .vcard__play::before, .vcard__tri { transition: none !important; transform: none !important; }
}

/* ---------------- the play control must stay tappable ---------------- *
   On a 390px screen the meta block at the foot of the facade grows tall enough
   to sit under the centred play button, and it was swallowing the tap: the
   button was visible, enabled, and unclickable because a paragraph intercepted
   the pointer. Measured on iPhone 13 — Playwright reported #facadeTitle
   intercepting every click at the button's own coordinates.

   The text is not interactive, so it stops claiming pointer events; the links
   inside it opt back in. */
.player__meta { pointer-events: none; }
.player__meta a { pointer-events: auto; }
.player__big, .player__big--out { z-index: 3; }
.player__wash { pointer-events: none; }

@media (max-width: 680px) {
  /* Keep the facade's text to a band at the foot rather than half the stage. */
  .player__meta { padding: 0.9rem 1rem; }
  .player__t { font-size: 1.05rem; }
  .player__m, .player__fine { font-size: 0.8125rem; }
  .player__big { top: 42%; }
}

/* The shopping CTA carries a long label — "Check current price at PlayStation
   support" — and at 390px it measured 364px inside a 358px column, pushing the
   document 9px sideways. It wraps now instead of forcing the page wide. */
.sitem__go { max-width: 100%; white-space: normal; text-align: left; }
@media (max-width: 680px) {
  .sitem { flex-direction: column; align-items: stretch; }
  .sitem__go { width: 100%; justify-content: center; text-align: center; }
  .shoprec__more .btn { width: 100%; justify-content: center; }
}

/* ======================================================================
   THE HOMEPAGE WATCH SECTION

   Two small cards in a row was the wrong shape for a section whose job is to
   make someone want to watch something. One video gets the space — a real
   thumbnail at a size you can read, a play control, and one line on why it is
   worth the minutes — with three more stacked beside it.

   Nothing in here depends on a reveal animation. The cards are in the document
   and visible; motion only moves them.
   ====================================================================== */
.wfeat {
  display: grid; gap: clamp(1rem, 2.2vw, 1.6rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: start;
}

.wlead {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius-lg, 14px);
  overflow: hidden; background: var(--surface, #0E1112);
}
.wlead:hover, .wlead:focus-visible { border-color: var(--lime); }
.wlead:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.wlead__media { position: relative; display: block; aspect-ratio: 16 / 9; background: #06090A; }
.wlead__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wlead__play {
  position: absolute; inset: 0; margin: auto;
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(8, 10, 11, 0.62); border: 2px solid var(--lime);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.wlead__tri {
  width: 0; height: 0; margin-left: 5px;
  border-left: 20px solid var(--lime);
  border-top: 13px solid transparent; border-bottom: 13px solid transparent;
}
.wlead:hover .wlead__play { transform: scale(1.06); background: rgba(8, 10, 11, 0.8); }
.wlead__dur {
  position: absolute; right: 0.6rem; bottom: 0.6rem;
  background: rgba(8, 10, 11, 0.88); color: var(--cream);
  font-size: 0.8125rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 5px;
}
.wlead__body { display: grid; gap: 0.35rem; padding: 0.95rem 1.05rem 1.1rem; }
.wlead__kind { justify-self: start; }
.wlead__t { font-size: clamp(1.1rem, 1.9vw, 1.45rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; color: var(--cream); }
.wlead__meta { color: var(--cream-dim); font-size: 0.875rem; }
.wlead__why { color: var(--cream-dim); font-size: 0.9375rem; line-height: 1.55; margin-top: 0.2rem; }

.wside { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; align-content: start; }
.qrow--rec { text-decoration: none; color: inherit; }
.qrow__why {
  color: var(--cream-dim); font-size: 0.8125rem; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

@media (max-width: 900px) {
  .wfeat { grid-template-columns: 1fr; }
  .wlead__play { width: 62px; height: 62px; }
}

/* ======================================================================
   THE HOMEPAGE GEAR CARDS

   Each item gets its category mark, its maker, the two specifications that
   actually decide the choice, and a button that names its own destination.
   The mark is our own drawing, not a photograph: we hold no licence to
   reproduce Sony's or Microsoft's product shots, and a generated picture of a
   real product would misrepresent a thing someone is about to buy.
   ====================================================================== */
.gcards {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(0.9rem, 2vw, 1.3rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gcard {
  display: grid; gap: 0.7rem; align-content: start;
  border: 1px solid var(--line); border-radius: var(--radius-lg, 14px);
  background: var(--surface, #0E1112); overflow: hidden;
  padding-bottom: 1rem;
}
.gcard__art {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 16 / 9; color: var(--lime);
  background:
    radial-gradient(120% 140% at 50% 10%, rgba(214, 255, 63, 0.14), transparent 62%),
    linear-gradient(160deg, #141A1C 0%, #0B0E0F 100%);
  border-bottom: 1px solid var(--line);
}
.gcard__art svg { width: 44%; max-width: 128px; height: auto; }
.gcard__art--xbox-consoles { color: #8FE3C0; background: radial-gradient(120% 140% at 50% 10%, rgba(143, 227, 192, 0.14), transparent 62%), linear-gradient(160deg, #141A1C 0%, #0B0E0F 100%); }
.gcard__art--storage { color: #9ED9FF; background: radial-gradient(120% 140% at 50% 10%, rgba(158, 217, 255, 0.13), transparent 62%), linear-gradient(160deg, #141A1C 0%, #0B0E0F 100%); }
.gcard__cat {
  position: absolute; left: 0.7rem; top: 0.7rem;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); background: rgba(8, 10, 11, 0.72);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.18rem 0.5rem;
}
.gcard__b { display: grid; gap: 0.3rem; padding: 0 1rem; }
.gcard__maker { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); }
.gcard__t { font-size: 1.0625rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.25; color: var(--cream); }
.gcard__d { color: var(--cream-dim); font-size: 0.9375rem; line-height: 1.5; }
.gspecs { display: grid; gap: 0.25rem; margin-top: 0.35rem; }
.gspec { display: flex; gap: 0.5rem; font-size: 0.8125rem; line-height: 1.4; }
.gspec__k { flex: none; min-width: 4.5rem; color: var(--cream-dim); font-weight: 700; }
.gspec__v { color: var(--cream); }
.gcard__go { margin: 0.2rem 1rem 0; justify-content: center; text-align: center; white-space: normal; }
.gcard__where { padding: 0 1rem; font-size: 0.8125rem; color: var(--cream-dim); text-align: center; }
