:root {
  --bg: #0d0b0a;
  --bg-elevated: #17130f;
  --bg-elevated-2: #1e1912;
  --border: #2a231d;
  --border-hover: #3d332a;
  --text: #f2ede6;
  --text-secondary: #cdc4b8;
  --text-muted: #9b9188;
  --text-faint: #6b6259;

  --accent-1: #ff7a45;
  --accent-2: #ff2d6f;
  --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --accent-solid: #ff5277;
  --accent-solid-hover: #ff7a92;

  --verdict-must: #34d399;
  --verdict-good: #a3e635;
  --verdict-onetime: #fbbf24;
  --verdict-wait: #60a5fa;
  --verdict-skip: #f87171;

  --pill-success-bg: rgba(52, 211, 153, 0.14);
  --pill-success-text: #4ee0a8;
  --pill-neutral-bg: rgba(255, 255, 255, 0.06);
  --pill-neutral-text: var(--text-muted);
  --pill-danger-bg: rgba(248, 113, 113, 0.14);
  --pill-danger-text: #f88b8b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
}

a { color: var(--accent-solid); text-decoration: none; }
a:hover { color: var(--accent-solid-hover); }
::selection { background: rgba(255, 82, 119, 0.3); }

.serif { font-family: 'Fraunces', serif; }

.wrap {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

.header-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline { font-size: 13px; color: var(--text-muted); letter-spacing: 0.02em; }

.rule { height: 1px; background: var(--border); }

.filter-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.filter-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }

.search-input {
  width: 100%;
  max-width: 420px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus { outline: none; border-color: var(--accent-solid); }

.chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-family: inherit;
}

.chip.active {
  border-color: transparent;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 32px 0 20px 0;
}

.section-heading h1, .section-heading h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin: 0;
}

.muted { color: var(--text-muted); font-size: 13px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding-bottom: 72px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.card:hover { border-color: rgba(255,122,69,0.4); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.35); }

.poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.poster svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.45; }

.poster .initial {
  position: absolute;
  left: 12px;
  bottom: 4px;
  font-family: 'Fraunces', serif;
  font-size: 60px;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

.poster .lang-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(13,11,10,0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; line-height: 1.25; color: var(--text); }
.card-meta { font-size: 12px; color: var(--text-muted); }

.score-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.score { font-family: 'Fraunces', serif; font-weight: 700; font-size: 21px; }
.score-suffix { font-size: 12px; color: var(--text-muted); }

.verdict-row { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px currentColor; }
.verdict-label { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); }

.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.back-link:hover { color: var(--accent-solid-hover); }

.leaderboard { display: flex; flex-direction: column; gap: 10px; padding-bottom: 72px; }

.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.leaderboard-row:hover { border-color: rgba(255,122,69,0.4); transform: translateX(2px); }

.leaderboard-rank {
  width: 32px;
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-muted);
  text-align: center;
}

.lb-poster {
  width: 48px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.leaderboard-info { flex: 1; min-width: 0; }

.leaderboard-score { flex-shrink: 0; min-width: 64px; text-align: right; }

@media (max-width: 640px) {
  .leaderboard-row { flex-wrap: wrap; }
  .leaderboard-info { flex-basis: 100%; order: 1; }
}

.hero { display: flex; gap: 40px; padding-top: 32px; }
.movie-banner { position: relative; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center 25%; padding: 0 32px; margin-top: 24px; }
.movie-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,11,10,0.55) 0%, rgba(13,11,10,0.92) 100%); z-index: 0; }
.movie-banner .hero { position: relative; z-index: 1; padding-top: 32px; padding-bottom: 8px; }
.hero-poster { position: relative; width: 240px; flex-shrink: 0; aspect-ratio: 2/3; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.hero-poster svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.45; }
.hero-poster .initial { position: absolute; left: 14px; bottom: 6px; font-family: 'Fraunces', serif; font-size: 84px; color: rgba(255,255,255,0.9); line-height: 1; }

.hero-info { display: flex; flex-direction: column; gap: 16px; flex-grow: 1; padding-top: 4px; }

@media (max-width: 640px) {
  .hero { flex-direction: column; gap: 20px; }
  .hero-poster { width: 160px; }
  .movie-banner { padding: 0 20px; }
}
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }
.hero-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 36px; margin: 0; line-height: 1.1; color: var(--text); }
.hero-synopsis { font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); margin: 6px 0 0 0; max-width: 620px; }

.score-panel { display: flex; align-items: center; gap: 26px; margin-top: 6px; padding: 18px 22px; background: rgba(255,255,255,0.035); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 10px; width: fit-content; }
.score-panel .big { font-family: 'Fraunces', serif; font-weight: 700; font-size: 36px; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.score-panel .divider { width: 1px; height: 40px; background: var(--border); }
.score-panel .label { font-size: 11.5px; color: var(--text-muted); }

.spread-wrap { display: flex; flex-direction: column; gap: 8px; max-width: 500px; margin-top: 4px; }
.spread-bar { display: flex; height: 8px; border-radius: 100px; overflow: hidden; background: var(--bg-elevated-2); }
.spread-legend { font-size: 12.5px; color: var(--text-secondary); }

.summary-card { margin-top: 36px; padding: 26px 30px; background: rgba(255,255,255,0.035); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 10px; }
.summary-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin: 10px 0 20px 0; max-width: 800px; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 640px) { .pc-grid { grid-template-columns: 1fr; gap: 20px; } }
.pc-col { display: flex; flex-direction: column; gap: 8px; }
.pc-item { display: flex; gap: 7px; align-items: flex-start; font-size: 13.5px; color: var(--text-secondary); }
.pc-item svg { margin-top: 3px; flex-shrink: 0; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; padding: 22px 0 72px 0; }
.video-card { display: flex; flex-direction: column; gap: 12px; background: rgba(255,255,255,0.035); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 10px; padding: 16px; transition: border-color .15s ease; }
.video-card:hover { border-color: rgba(255,122,69,0.4); }
.channel-row { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 12.5px; font-weight: 600; }
.channel-name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.channel-lang { font-size: 11.5px; color: var(--text-muted); }
.thumb { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; }
.thumb .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.thumb .play-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; }
.video-meta-row { display: flex; align-items: center; justify-content: space-between; }
.video-quote { font-size: 13px; line-height: 1.55; color: var(--text-secondary); margin: 0; font-style: italic; }
.watch-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; margin-top: 2px; }

/* ---- Admin ---- */

.admin-shell { max-width: 1100px; margin: 0 auto; padding: 40px 40px 80px 40px; }

.admin-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; }
.admin-header-left { display: flex; align-items: baseline; gap: 14px; }
.admin-badge { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); border: 1px solid var(--border); padding: 3px 9px; border-radius: 100px; }
.admin-header-right { display: flex; align-items: center; gap: 18px; font-size: 13px; color: var(--text-muted); }

.btn { font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 10px 18px; border-radius: 6px; border: 1px solid transparent; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; }
.btn-primary { background: var(--accent-gradient); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary { background: var(--bg-elevated); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--border-hover); }
.btn-danger { background: transparent; color: var(--pill-danger-text); border-color: rgba(248,113,113,0.3); }
.btn-danger:hover { background: var(--pill-danger-bg); }
.btn-sm { padding: 6px 12px; font-size: 12.5px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.card-box { background: rgba(255,255,255,0.035); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 10px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 600; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 13.5px; vertical-align: middle; color: var(--text-secondary); }
.admin-table tr:last-child td { border-bottom: none; }
.row-thumb { width: 40px; height: 56px; border-radius: 5px; object-fit: cover; flex-shrink: 0; }
.row-thumb-fallback { width: 40px; height: 56px; border-radius: 5px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); font-family: 'Fraunces', serif; font-size: 20px; flex-shrink: 0; }
.row-title-cell { display: flex; align-items: center; gap: 12px; }
.row-title { font-weight: 600; color: var(--text); }
.row-actions { display: flex; gap: 8px; align-items: center; }

.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.status-published { background: var(--pill-success-bg); color: var(--pill-success-text); }
.status-draft { background: var(--pill-neutral-bg); color: var(--pill-neutral-text); }

.field-label { font-size: 12px; font-weight: 600; color: var(--text-secondary); display: block; margin-bottom: 6px; }
.field-hint { font-size: 11.5px; color: var(--text-muted); margin-top: 5px; }
.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--bg-elevated-2); border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent-solid); }
.textarea { resize: vertical; font-family: inherit; line-height: 1.5; }
.form-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form-section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.form-section:last-child { border-bottom: none; }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 600; margin-bottom: 16px; display: block; }

.lang-inline { display: flex; gap: 8px; align-items: center; }
.lang-add-toggle { font-size: 12.5px; font-weight: 600; color: var(--accent-solid); cursor: pointer; white-space: nowrap; }
.lang-add-box { display: none; gap: 8px; margin-top: 10px; }
.lang-add-box.open { display: flex; }

.upload-box { display: flex; gap: 18px; align-items: center; }
.upload-preview { width: 90px; height: 135px; border-radius: 6px; overflow: hidden; position: relative; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.06); }
.upload-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview .initial { font-family: 'Fraunces', serif; font-size: 40px; color: rgba(255,255,255,0.9); }
.upload-controls { display: flex; flex-direction: column; gap: 8px; }

.video-list { display: flex; flex-direction: column; gap: 14px; }
.video-row { padding: 16px 18px; }
.video-row-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.video-url { font-size: 12px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 480px; }
.video-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin-top: 14px; }
.video-edit-grid .full { grid-column: 1 / -1; }
.pc-edit-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.pc-edit-row .input { flex-grow: 1; }
.icon-btn { background: transparent; border: none; cursor: pointer; color: var(--text-muted); padding: 6px; display: flex; align-items: center; }
.icon-btn:hover { color: var(--pill-danger-text); }

.aggregate-panel { display: flex; align-items: center; gap: 32px; padding: 18px 22px; background: var(--bg-elevated-2); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 20px; }
.aggregate-item { display: flex; flex-direction: column; gap: 2px; }
.aggregate-value { font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; color: var(--text); }

.form-actions { display: flex; justify-content: flex-end; gap: 10px; padding-top: 28px; }

.login-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.login-card { width: 380px; padding: 40px 36px; }
.login-error { font-size: 13px; color: var(--pill-danger-text); background: var(--pill-danger-bg); border-radius: 6px; padding: 10px 12px; margin-bottom: 16px; }
.login-hint { font-size: 12px; color: var(--text-muted); margin-top: 18px; line-height: 1.5; }
.top-admin-link { font-size: 12.5px; color: var(--text-muted); }
.top-admin-link:hover { color: var(--accent-solid-hover); }
.empty-state { padding: 60px 20px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ---- Hub landing page ---- */
/* .hub-page fills exactly one viewport: hero flex-grows to absorb
   whatever space cards+footer don't need, so the whole page fits
   without scrolling on any normal screen height. */
.hub-page { position: relative; z-index: 2; min-height: 100vh; display: flex; flex-direction: column; }

.hub-hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.hub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,11,10,0.35) 0%, rgba(13,11,10,0.55) 55%, var(--bg) 100%);
}
.hub-hero-content { position: relative; z-index: 1; text-align: center; padding: 24px 40px; max-width: 820px; }
.hub-headline { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 33px; line-height: 1.14; text-transform: uppercase; letter-spacing: -0.01em; color: #fff; text-shadow: 0 4px 28px rgba(0,0,0,0.65); margin: 0 0 10px 0; }
.hub-headline .grad { background: linear-gradient(90deg, #60a5fa, #a78bfa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hub-pills { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.hub-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); backdrop-filter: blur(6px); color: #fff; font-size: 11.5px; font-weight: 700; text-decoration: none; letter-spacing: 0.03em; text-transform: uppercase; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.hub-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.hub-pill:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12); transform: translateY(-1px); color: #fff; }
.hub-pill.muted { color: rgba(255,255,255,0.45); cursor: default; }
.hub-pill.muted:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); transform: none; color: rgba(255,255,255,0.45); }

.hub-footer-bar { flex: 0 0 auto; text-align: center; padding: 4px 40px 16px; }
.hub-footer-bar .fw { font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; }
.hub-footer-bar .fw b { color: var(--text); font-weight: 700; }
.hub-footer-bar .ft { font-size: 10px; letter-spacing: 0.14em; color: var(--text-faint); margin-top: 5px; text-transform: uppercase; }
.hub-tagline { font-size: 14.5px; color: var(--text-secondary); text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.hub-nav-top { position: absolute; top: 22px; left: 32px; right: 32px; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.hub-logo { font-family: 'Fraunces', serif; font-weight: 700; font-size: 17px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.hub-logo b { color: #fff; }
.grad-bp { background: linear-gradient(90deg, #60a5fa, #a78bfa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hub-nav-icons { display: flex; align-items: center; gap: 18px; }
.hub-nav-icons svg { width: 19px; height: 19px; color: rgba(255,255,255,0.85); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

.hub-wrap { flex: 0 0 auto; max-width: 1280px; margin: 0 auto; width: 100%; padding: 20px 40px 20px 40px; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.hub-tile { display: flex; flex-direction: column; background: rgba(255,255,255,0.035); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: inherit; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; position: relative; overflow: hidden; }
a.hub-tile.active { border-color: rgba(139,92,246,0.35); }
a.hub-tile.active:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(139,92,246,0.2); }
.hub-tile.disabled { opacity: 0.9; cursor: default; }
.hub-tile-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.hub-tile.disabled .hub-tile-image { filter: grayscale(1) brightness(0.55); }
.hub-tile-body { padding: 14px 16px 16px 16px; display: flex; flex-direction: column; gap: 5px; }
.hub-tile-label { display: flex; align-items: center; gap: 8px; }
.hub-tile-label svg { width: 16px; height: 16px; flex-shrink: 0; }
.hub-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); }
.hub-tile.disabled .hub-name { color: var(--text-faint); }
.hub-desc { font-size: 12px; color: var(--text-muted); line-height: 1.45; }
.hub-tile.disabled .hub-desc { color: var(--text-faint); }
.hub-badge { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; color: var(--text-faint); border: 1px solid var(--border); padding: 2px 8px; border-radius: 100px; width: fit-content; margin-top: 2px; }

/* ---- Vertical hero (movies/index.html and future verticals) ---- */
.vhero { position: relative; z-index: 2; min-height: 320px; display: flex; flex-direction: column; background-size: cover; background-position: center 22%; overflow: hidden; }
.vhero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,11,10,0.25) 0%, rgba(13,11,10,0.55) 55%, var(--bg) 100%); }
.vhero-nav { position: relative; z-index: 1; max-width: 1360px; width: 100%; margin: 0 auto; padding: 28px 40px 0 40px; display: flex; align-items: center; justify-content: space-between; }
.vhero-nav .wordmark { text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.vhero-nav .top-admin-link { text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.vhero-content { position: relative; z-index: 1; max-width: 1360px; width: 100%; margin: 0 auto; padding: 40px 40px 36px 40px; flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.vhero-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.vhero-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 38px; color: #fff; margin: 0 0 10px 0; text-shadow: 0 4px 24px rgba(0,0,0,0.65); }
.vhero-title .accent { color: var(--vaccent, #a78bfa); }
.vhero-sub { font-size: 14.5px; color: var(--text-secondary); max-width: 480px; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }

/* ---- Aspect-score bars (cars, and any future vertical with sub-ratings) ---- */
.aspect-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }
.aspect-row { display: grid; grid-template-columns: 150px 1fr 44px; align-items: center; gap: 14px; }
.aspect-label { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.aspect-bar-track { height: 8px; border-radius: 100px; background: var(--bg-elevated-2); overflow: hidden; }
.aspect-bar-fill { height: 100%; background: var(--accent-gradient); border-radius: 100px; }
.aspect-score { font-size: 13px; font-weight: 700; text-align: right; color: var(--text); }

/* ---- AI-generated content disclaimer ---- */
.ai-disclaimer { margin-top: 40px; padding: 16px 20px; border: 1px solid var(--border); border-radius: 8px; font-size: 12px; line-height: 1.6; color: var(--text-muted); }

/* ---- Site-wide ambient background: living gradient depth instead of flat
   black. Two fixed-position elements (.ambient, .grain), duplicated as the
   first two children of <body> on every public page. z-index:0/1 so page
   content (which each page wraps in a container with position:relative and
   z-index:2, or which simply comes after in source order over a fixed
   element) sits above it. ---- */
.ambient { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ambient .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .28; mix-blend-mode: screen; }
.blob-1 { width: 640px; height: 640px; top: -220px; left: -120px; background: #ff7a45; animation: drift1 34s ease-in-out infinite alternate; }
.blob-2 { width: 560px; height: 560px; top: 120px; right: -160px; background: #7c3aed; animation: drift2 40s ease-in-out infinite alternate; }
.blob-3 { width: 520px; height: 520px; bottom: -200px; left: 20%; background: #0c4a6e; animation: drift3 46s ease-in-out infinite alternate; }
.blob-4 { width: 420px; height: 420px; top: 60%; right: 8%; background: #9d174d; opacity: .18; animation: drift1 38s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(60px,40px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(-50px,60px) scale(1.05); } }
@keyframes drift3 { to { transform: translate(40px,-50px) scale(1.1); } }
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@media (prefers-reduced-motion: reduce) { .ambient .blob { animation: none !important; } }

/* ---- Scroll-reveal utility: apply .reveal to a section, toggle .in via the
   shared IntersectionObserver snippet included on each page. ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---- Colorful Instagram nav icon (real brand gradient, so it reads at a
   glance instead of blending into muted nav links) ---- */
.nav-social { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 11px;
  background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); color: #fff; box-shadow: 0 4px 14px rgba(238,42,123,.35); flex-shrink: 0;
  transition: transform .15s ease, box-shadow .15s ease; }
.nav-social svg { width: 18px; height: 18px; }
.nav-social:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(238,42,123,.5); }

/* ---- Site footer: shared across every public page ---- */
.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--border); margin-top: 40px; }
.footer-top { max-width: 1360px; margin: 0 auto; padding: 48px 40px 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-mission { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); max-width: 280px; margin: 14px 0 0; }
.footer-col h4 { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); font-weight: 700; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: var(--text-secondary); transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-col .soon { color: var(--text-faint); cursor: default; display: inline-flex; align-items: center; gap: 7px; }
.footer-col .soon .tag { font-size: 9.5px; text-transform: uppercase; letter-spacing: .05em; border: 1px solid var(--border); border-radius: 100px; padding: 1px 6px; font-weight: 700; }
.footer-trust { font-size: 12px; line-height: 1.65; color: var(--text-faint); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { max-width: 1360px; margin: 0 auto; padding: 22px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 22px; font-size: 12.5px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-faint); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom-inner { flex-direction: column; align-items: flex-start; } }
