/* Styles for statically-generated SEO content pages (scripts/generate-content-pages.js).
   Static subset of src/App.css's card/badge visuals — no hover-reveal states, since these
   pages ship with no JS. */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #0a0e1a;
  color: #eef2f0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.content-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  letter-spacing: 0em;
  font-size: 1.3rem;
  text-decoration: none;
}
.content-logo .teal { color: #7cb3c9; }
.content-logo .white { color: #eef2f0; }

.content-nav {
  display: flex;
  gap: 20px;
}
.content-nav a {
  color: #eef2f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.content-nav a:hover { color: #7cb3c9; }
.content-nav a.nav-watch-link { font-size: 16px; font-weight: 800; color: rgb(124, 179, 201); border-bottom: 1px solid rgb(124, 179, 201); }
.content-nav a.nav-watch-link:hover { color: #eef2f0; border-bottom-color: #eef2f0; }

h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #eef2f0;
}

h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: #eef2f0;
}

.content-intro {
  color: #9aa3b5;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 0 32px;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px 16px;
}

.card-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.show-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #141b2d;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
}

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(160deg, #1a2340 0%, #0f1524 100%);
}

.score-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(10, 14, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.score-badge.green { color: #4ade80; }
.score-badge.amber { color: #c9a84c; }
.score-badge.orange { color: #fb923c; }
.score-badge.red { color: #f87171; }

.card-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  padding: 0 2px;
}
.card-caption-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9aa3b5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.card-caption-score {
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.card-caption-score.green { color: #4ade80; }
.card-caption-score.amber { color: #c9a84c; }
.card-caption-score.orange { color: #fb923c; }
.card-caption-score.red { color: #f87171; }

.card-providers {
  display: flex;
  gap: 4px;
  padding: 0 2px;
}
.provider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.hub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.hub-link {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eef2f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.hub-link:hover {
  border-color: rgba(124, 179, 201, 0.6);
  color: #7cb3c9;
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.archive-list a {
  color: #eef2f0;
  text-decoration: none;
  font-size: 0.9rem;
}
.archive-list a:hover { color: #7cb3c9; }

.show-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}
@media (max-width: 640px) {
  .show-detail { grid-template-columns: 1fr; }
  .show-detail-poster { max-width: 220px; margin: 0 auto; }
}
@media (max-width: 450px) {
  .show-detail-poster { max-width: 100%; }
}
.show-detail-poster img,
.show-detail-poster .card-placeholder {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.show-detail-info h1 { margin-bottom: 6px; }

.show-detail-meta {
  color: #9aa3b5;
  font-size: 0.9rem;
  margin: 0 0 14px;
}
.detail-score {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
}
.detail-score.green { color: #4ade80; }
.detail-score.amber { color: #c9a84c; }
.detail-score.orange { color: #fb923c; }
.detail-score.red { color: #f87171; }
.show-detail-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.genre-pill {
  background: rgba(255, 255, 255, 0.06);
  color: #9aa3b5;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.show-detail-overview {
  color: #c8cdd8;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 8px;
}
.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #eef2f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.provider-chip:hover { border-color: rgba(124, 179, 201, 0.6); color: #7cb3c9; }

.content-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.content-footer a {
  color: #eef2f0;
  text-decoration: none;
  font-size: 0.9rem;
}
.content-footer a:hover { color: #7cb3c9; }
