/* ============================================================
   CinemaGigs – Frontend CSS
   SEO-first, minimal JS, lightweight
   ============================================================ */

/* ── Reset & Variables ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0f;
  --surface:   #13131a;
  --surface2:  #1c1c28;
  --border:    #2a2a3d;
  --text:      #e8e8f0;
  --muted:     #7070a0;
  --accent:    #e11d48;
  --accent2:   #6366f1;
  --gold:      #f59e0b;
  --radius:    8px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w:     1200px;
  --sidebar-w: 280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; }
a:hover { color: var(--accent); }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; color: #f8f8ff; }
h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h3 { font-size: 1.1rem; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { display: none; }
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
}

.site-header .container {
  display: flex; align-items: center; gap: 24px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
  flex-shrink: 0;
}

.logo::before { content: '🎬 '; }

.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
}

.main-nav a {
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .15s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active { color: var(--text); }

.main-nav a.active {
  color: #fff;
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent2);
  border-radius: 2px;
}

/* Header actions (contact btn + hamburger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn-contact-nav {
  padding: 7px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}

.btn-contact-nav:hover { border-color: var(--accent2); color: var(--accent2); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,15,.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 0;
  }

  .main-nav.nav-open { display: flex; }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .main-nav a:last-child { border-bottom: none; }

  .main-nav a.active::after { display: none; }

  .nav-toggle { display: block; }

  .btn-contact-nav { display: none; }

  .site-header { position: relative; }
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 0 0;
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-socials { display: flex; gap: 10px; }
.social-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 1rem;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.social-icon:hover { background: var(--accent2); border-color: var(--accent2); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: var(--muted);
  font-size: .875rem;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--text); }

.footer-contact-link { margin-top: 16px; }
.footer-email {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: .8rem;
  color: var(--muted);
  transition: border-color .15s, color .15s;
}
.footer-email:hover { border-color: var(--accent2); color: var(--accent2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy { color: var(--muted); font-size: .8rem; }

.footer-legal-links {
  display: flex; gap: 12px; align-items: center;
  font-size: .8rem;
}

.footer-legal-links a { color: var(--muted); }
.footer-legal-links a:hover { color: var(--text); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .15s;
  text-decoration: none;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c01039; color: #fff; }
.btn-lg { padding: 13px 28px; font-size: 1rem; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent2); color: var(--accent2); }

.btn--block { width: 100%; justify-content: center; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

/* ── Static pages (Contact, Privacy, Terms) ───────────────── */
.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.page-hero {
  text-align: center;
  margin-bottom: 48px;
}

.page-hero h1 { margin-bottom: 12px; }

.page-lead {
  font-size: 1.1rem;
  color: var(--muted);
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 540px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-card h3 { font-size: .95rem; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: .875rem; line-height: 1.6; }

.contact-email-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent2);
  font-size: .875rem;
  font-weight: 600;
  word-break: break-all;
}

.contact-email-link:hover { color: var(--accent); }

/* Legal pages (Privacy, Terms) */
.page-legal .page-hero { text-align: left; }

.legal-body {
  line-height: 1.8;
  color: var(--text);
}

.legal-body h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-body p { margin-bottom: 14px; color: rgba(232,232,240,.85); }

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-body ul li {
  margin-bottom: 6px;
  color: rgba(232,232,240,.85);
}

.legal-body a { color: var(--accent2); }
.legal-body a:hover { color: var(--accent); }

/* ── Celebrity grid ───────────────────────────────────────── */
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.celeb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
  color: var(--text);
}

.celeb-card:hover { transform: translateY(-3px); border-color: var(--accent2); }

.celeb-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.celeb-card__info {
  padding: 10px 12px;
}

.celeb-card__info strong { display: block; font-size: .875rem; }
.celeb-card__info span { font-size: .75rem; color: var(--muted); }

/* ── Celebrity hero ───────────────────────────────────────── */
.celeb-hero { background: var(--surface); padding: 40px 0; margin-bottom: 32px; }

.celeb-hero__inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 640px) {
  .celeb-hero__inner { flex-direction: column; }
}

.celeb-hero__image img {
  width: 240px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.celeb-hero__name { margin-bottom: 4px; }
.celeb-hero__profession { color: var(--accent); font-weight: 500; margin-bottom: 16px; }

.celeb-facts { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; margin-bottom: 16px; }
.celeb-facts dt { color: var(--muted); font-size: .8rem; }
.celeb-facts dd { font-size: .875rem; }

.celeb-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}

.celeb-tabs a {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}

.celeb-tabs a:hover { border-color: var(--accent2); color: var(--accent2); }

/* ── Movie grid ───────────────────────────────────────────── */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.movie-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s;
  color: var(--text);
}

.movie-card:hover { transform: translateY(-3px); }
.movie-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }

.movie-card__info {
  padding: 8px 10px;
}

.movie-card__info strong { display: block; font-size: .8rem; margin-bottom: 4px; }
.movie-card__info span { font-size: .75rem; color: var(--gold); display: block; }

/* ── Movie hero ───────────────────────────────────────────── */
.movie-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin-bottom: 8px;
}

.movie-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,.95) 40%, rgba(10,10,15,.6));
}

.movie-hero__inner {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.movie-poster img { width: 200px; border-radius: var(--radius); flex-shrink: 0; }

.movie-info { flex: 1; }
.movie-info h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.tagline { color: var(--muted); font-style: italic; margin: 4px 0 12px; }

.movie-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: .875rem; color: var(--muted);
  margin-bottom: 12px;
}

.rating-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .8rem;
  color: var(--text);
}

.imdb-rating {
  display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 16px;
}

.imdb-star { color: var(--gold); font-size: 1.1rem; }
.imdb-rating strong { font-size: 1.1rem; }
.imdb-rating span { color: var(--muted); font-size: .875rem; }

.ott-buttons {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.ott-btn {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  transition: border-color .15s;
}

.ott-btn:hover { border-color: var(--accent2); color: var(--accent2); }

.movie-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}

.movie-tabs a {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}

.movie-tabs a.active, .movie-tabs a:hover { background: var(--accent2); border-color: var(--accent2); color: #fff; }

/* ── Cast grid ────────────────────────────────────────────── */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.cast-card {
  text-align: center;
  color: var(--text);
}

.cast-card img {
  width: 80px; height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 6px;
}

.cast-card strong { display: block; font-size: .75rem; }
.cast-card span { font-size: .7rem; color: var(--muted); }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.gallery-grid a { overflow: hidden; border-radius: 6px; display: block; }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .3s; }
.gallery-grid a:hover img { transform: scale(1.05); }

/* ── Videos ───────────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.video-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.video-thumb { position: relative; cursor: pointer; }
.video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.3);
  transition: background .2s;
}
.video-thumb:hover .play-btn { background: rgba(0,0,0,.5); }
.video-card p { padding: 10px 12px; font-size: .85rem; }

/* ── News ─────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.news-card__body { padding: 14px 16px; }
.news-card__body h2, .news-card__body h3 { font-size: 1rem; margin-bottom: 6px; }
.news-card__body a { color: var(--text); }
.news-card__body a:hover h2, .news-card__body a:hover h3 { color: var(--accent2); }
.news-card__body time { font-size: .75rem; color: var(--muted); }
.news-card__body p { font-size: .875rem; color: var(--muted); margin-top: 8px; }

/* ── Category tag ─────────────────────────────────────────── */
.category-tag {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

/* ── Article ──────────────────────────────────────────────── */
.article-cover { width: 100%; max-height: 450px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.article-title { margin-bottom: 12px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: .875rem; color: var(--muted); margin-bottom: 20px; }
.article-excerpt { font-size: 1.1rem; border-left: 3px solid var(--accent); padding-left: 16px; margin-bottom: 24px; color: var(--muted); }
.article-body { line-height: 1.8; }
.article-body p + p { margin-top: 16px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag { background: var(--surface2); border: 1px solid var(--border); border-radius: 4px; padding: 3px 10px; font-size: .75rem; color: var(--muted); }

/* ── Jobs ─────────────────────────────────────────────────── */
.jobs-header { display: flex; justify-content: space-between; align-items: center; margin: 24px 0 16px; }
.jobs-list { display: flex; flex-direction: column; gap: 12px; }

.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}

.job-card--featured { border-color: var(--gold); }
.job-card__body { flex: 1; }
.job-card__body h2 { font-size: 1rem; margin-bottom: 6px; }
.job-card__body h2 a { color: var(--text); }
.job-card__body h2 a:hover { color: var(--accent2); }
.company, .location, .salary { font-size: .8rem; color: var(--muted); margin-right: 12px; }

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
}

.badge--featured { background: var(--gold); color: #000; border-color: var(--gold); }

.job-teaser {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.job-teaser:last-child { border-bottom: none; }
.job-teaser strong { flex: 1; }
.job-teaser span { font-size: .8rem; color: var(--muted); }

/* ── OTT ──────────────────────────────────────────────────── */
.ott-platforms-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 24px; }

.ott-platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

.ott-type { font-size: .75rem; background: var(--surface2); border-radius: 4px; padding: 2px 8px; color: var(--muted); }

/* ── Home hero ────────────────────────────────────────────── */
.home-hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.home-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.home-hero p { color: var(--muted); max-width: 500px; margin: 0 auto 28px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.home-section { margin: 48px 0; }
.home-section h2 { margin-bottom: 20px; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { font-size: .8rem; color: var(--muted); margin: 16px 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}

.sidebar-widget h3 { font-size: .95rem; margin-bottom: 12px; }

.related-list { list-style: none; }
.related-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.related-list li:last-child { border-bottom: none; }
.related-list a { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: .875rem; }
.related-list img { width: 36px; height: 36px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.related-list a:hover { color: var(--accent2); }

/* ── Data table ───────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.data-table th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--border); color: var(--muted); font-weight: 600; }
.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: var(--surface2); }

/* ── Net worth ────────────────────────────────────────────── */
.net-worth-highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin: 24px 0;
}

.nw-label { display: block; color: var(--muted); font-size: .85rem; margin-bottom: 8px; }
.nw-value { font-size: 2.5rem; font-family: var(--font-head); color: var(--gold); font-weight: 700; }

/* ── Content body ─────────────────────────────────────────── */
.content-body { line-height: 1.8; }
.content-body p + p { margin-top: 14px; }

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin: 40px 0;
}

.pagination a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .875rem;
  transition: all .15s;
}

.pagination a:hover, .pagination a.active { background: var(--accent2); border-color: var(--accent2); color: #fff; }
.pagination a[aria-current="page"] { background: var(--accent2); border-color: var(--accent2); color: #fff; }

/* ── Alert ────────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: .875rem; }
.alert-success { background: #052e1650; border: 1px solid #10b981; color: #6ee7b7; }
.alert-danger  { background: #4c000d50; border: 1px solid var(--accent); color: #fca5a5; }

/* ── Forms (frontend) ─────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .875rem; margin-bottom: 6px; color: var(--muted); }
.form-control {
  width: 100%;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .875rem;
  font-family: var(--font-body);
  transition: border-color .15s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent2);
}

.apply-box { margin-top: 32px; }
.apply-box h2 { margin-bottom: 20px; }

/* ── Misc ─────────────────────────────────────────────────── */
.view-all {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent2);
  font-size: .875rem;
  font-weight: 600;
}

.read-more { color: var(--accent2); font-size: .875rem; font-weight: 600; margin-top: 12px; display: inline-block; }

.movie-details { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; font-size: .85rem; }
.movie-details dt { color: var(--muted); }

.video-embed-wrap { border-radius: var(--radius); overflow: hidden; background: #000; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .celeb-hero__image img { width: 140px; }
  .movie-poster img { width: 120px; }
  .movie-hero { padding: 32px 0; }
  .home-hero { padding: 48px 0; }
  .movies-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
