/* Minimal styles for static SEO landing pages (genre/intent). Keeps SPA bundle separate. */
:root {
  --seo-bg: #0f231d;
  --seo-surface: #1a332b;
  --seo-text: #e8f0ec;
  --seo-muted: #9fb5aa;
  --seo-accent: #5cbf8a;
  --seo-max: 42rem;
}

* { box-sizing: border-box; }

body.seo-landing {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--seo-text);
  background: var(--seo-bg);
}

.seo-landing a { color: var(--seo-accent); }
.seo-landing a:hover { text-decoration: underline; }

.seo-skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
}
.seo-skip:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--seo-surface);
  color: var(--seo-text);
}

.seo-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}

.seo-header__inner {
  max-width: var(--seo-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.seo-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--seo-text);
  text-decoration: none;
}
.seo-brand:hover { color: var(--seo-accent); text-decoration: none; }

.seo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
}

.seo-main {
  max-width: var(--seo-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.seo-hero {
  margin-bottom: 2rem;
}

.seo-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.seo-lead {
  font-size: 1.05rem;
  color: var(--seo-muted);
  margin: 0 0 1.25rem;
}

.seo-intro {
  margin: 0 0 1.5rem;
}

.seo-btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  background: var(--seo-accent);
  color: #0a1612 !important;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.seo-btn:hover {
  filter: brightness(1.08);
  text-decoration: none !important;
}

.seo-section {
  margin-bottom: 2rem;
  padding: 1.25rem 1rem;
  background: var(--seo-surface);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.seo-section h2 {
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  font-weight: 650;
}

.seo-section p {
  margin: 0;
  color: var(--seo-muted);
}

.seo-section p + p { margin-top: 0.65rem; }

.seo-cta-panel {
  margin: 2rem 0;
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--seo-accent);
  background: rgba(92, 191, 138, 0.08);
}

.seo-cta-panel__title {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  font-weight: 650;
}

.seo-cta-panel p {
  margin: 0 0 1rem;
  color: var(--seo-text);
}

.seo-faq h2 {
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.seo-faq dl {
  margin: 0;
}

.seo-faq dt {
  font-weight: 650;
  margin-top: 1rem;
  color: var(--seo-text);
}

.seo-faq dt:first-child { margin-top: 0; }

.seo-faq dd {
  margin: 0.35rem 0 0;
  padding: 0;
  color: var(--seo-muted);
}

.seo-footer {
  max-width: var(--seo-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
  color: var(--seo-muted);
}

.seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

/* Movie cards — aligned with SPA ``ptab-card`` (watchlist / rate list) */
.seo-section > .seo-movie-grid {
  margin-top: 1rem;
}

.seo-movie-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-movie-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-movie-card__poster {
  width: 44px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.seo-movie-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-movie-card__body {
  flex: 1;
  min-width: 0;
}

.seo-movie-card__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--seo-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-movie-card__meta {
  font-size: 12px;
  color: var(--seo-muted);
  margin-bottom: 4px;
}

.seo-movie-card__synopsis {
  font-size: 12px;
  color: var(--seo-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.seo-movie-empty {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--seo-muted);
}
