/*
 * Shared styles for the where-to-watch guides. Kept as one linked file rather
 * than inlined per page (the pattern the older /about, /faq pages use) because
 * there are many guides and they must not drift apart visually.
 * Tokens mirror src/styles.css.
 */
:root {
  --bg: #0b0d12;
  --surface: #12141b;
  --surface-2: #171a23;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f4f8;
  --text-body: #d4d9e4;
  --text-muted: #98a0b3;
  --accent: #7c5cff;
  --accent-deep: #3b2bd4;
  --accent-soft: #b9a8ff;
}
* { box-sizing: border-box; }
html { background: var(--bg); color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 0 22px; }

/* ---- site chrome ---- */
header.site {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 58px;
  flex-wrap: wrap;
}
.wordmark {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}
.wordmark .grad {
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav.site a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-left: 16px;
}
nav.site a:hover { color: var(--text); }
footer.site {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 26px 0 40px;
}
footer.site .links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
footer.site .links a:hover { color: var(--text); }
footer.site .sep { color: rgba(255, 255, 255, 0.2); margin: 0 9px; }
footer.site .attr {
  color: var(--text-muted);
  font-size: 12.5px;
  margin-top: 12px;
  max-width: 620px;
}

/* ---- article ---- */
main { padding: 30px 0 20px; }
.crumb {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.crumb a { color: var(--text-muted); text-decoration: none; }
.crumb a:hover { color: var(--text); }
h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}
h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 8px;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 4px;
}
p, li { color: var(--text-body); }
li { margin-bottom: 6px; }
.lead { font-size: 18px; color: var(--text-muted); margin-top: 0; }
a.inline { color: var(--accent-soft); }
.updated {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 26px;
}

/* ---- the answer box: the thing most visitors came for ---- */
.answer {
  background: linear-gradient(150deg, rgba(124, 92, 255, 0.14), rgba(59, 43, 212, 0.06));
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 22px 0 8px;
}
.answer .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 6px;
}
.answer p { margin: 0; font-size: 17px; color: var(--text); }
.answer p + p { margin-top: 8px; font-size: 15px; color: var(--text-body); }
.answer strong { font-weight: 700; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
}
.card > :first-child { margin-top: 0; }
.card > :last-child { margin-bottom: 0; }
.note {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- provider chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
a.chip:hover { border-color: var(--accent); color: #fff; }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---- live availability panel ---- */
.live {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0;
}
.live-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.live-title { font-size: 15px; font-weight: 700; margin: 0; }
.live-status { font-size: 12.5px; color: var(--text-muted); }
.live-group { margin-top: 12px; }
.live-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 2px;
}

/* ---- table ---- */
.tbl { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.tbl th, .tbl td {
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.tbl th { color: var(--text-muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.07em; }
.tbl tr:last-child td { border-bottom: none; }
.tbl-scroll { overflow-x: auto; }

/* ---- CTA back into the app ---- */
.cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 20px;
  margin: 30px 0 0;
}
.cta p { margin: 0; flex: 1 1 280px; }
.btn {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 10px;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.1); }

/* ---- guide index ---- */
.guide-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.guide-list a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 17px;
  text-decoration: none;
}
.guide-list a:hover { border-color: var(--accent); }
.guide-list .t { font-weight: 700; color: var(--text); display: block; }
.guide-list .d { font-size: 14px; color: var(--text-muted); }

/* ---- disclosure ---- */
.disclosure {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin-top: 34px;
  padding-top: 14px;
}

@media (max-width: 620px) {
  h1 { font-size: 26px; }
  main { padding-top: 22px; }
}
