/* ═══════════ bOOvies Film Detail — shared styles ═══════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #000;
  color: #e8e8e8;
  min-height: 100vh;
  padding-bottom: 4rem;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* Decorative background blobs */
.bg-circle {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 180, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.bg-circle.c1 { width: 500px; height: 500px; top: -120px; left: -120px; animation: float1 10s ease-in-out infinite; }
.bg-circle.c2 { width: 450px; height: 450px; bottom: -100px; right: -100px; animation: float2 12s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0);} 50% { transform: translate(30px,20px);} }
@keyframes float2 { 0%,100% { transform: translate(0,0);} 50% { transform: translate(-20px,-30px);} }

.film-page {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: #FF69B4;
  font-weight: 700;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.2s;
}
.breadcrumb a:hover { border-bottom-color: #FF69B4; }

/* ── Hero ── */
.film-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}
.hero-poster svg {
  width: 100%;
  display: block;
  image-rendering: pixelated;
  shape-rendering: crispEdges;
  border: 1px solid rgba(255, 105, 180, 0.25);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
}
.hero-meta { padding-top: 0.5rem; }
.film-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  font-weight: 900;
  color: #FF69B4;
  border: 1px solid #FF69B4;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}
.film-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.film-title .pink { color: #FF69B4; }
.film-tagline {
  font-style: italic;
  font-size: 1.15rem;
  color: #ccc;
  margin: 1rem 0 1.5rem;
  line-height: 1.4;
  max-width: 520px;
}
.film-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.film-stats > div {
  background: rgba(255, 105, 180, 0.06);
  border: 1px solid rgba(255, 105, 180, 0.18);
  padding: 0.6rem 0.5rem;
  text-align: center;
}
.stat-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.25rem;
}
.stat-value {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.film-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary, .btn-ghost {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  padding: 0.8rem 1.5rem;
  border: 2px solid #FF69B4;
  background: #FF69B4;
  color: #0a0a0a;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
}
.btn-primary:hover { background: #ff85c8; border-color: #ff85c8; }
.btn-ghost {
  background: transparent;
  color: #FF69B4;
}
.btn-ghost:hover { background: rgba(255, 105, 180, 0.1); }

/* ── Section ── */
.film-section {
  padding: 2.5rem 0;
  border-top: 1px dashed rgba(255, 105, 180, 0.2);
}
.film-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.film-section h2 .pink { color: #FF69B4; }

.synopsis p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 1rem;
  max-width: 780px;
}
.synopsis p em { color: #FF69B4; font-style: italic; font-weight: 600; }

/* ── Cast ── */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.cast-card {
  background: rgba(255, 105, 180, 0.05);
  border: 1px solid rgba(255, 105, 180, 0.15);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: all 0.2s;
}
.cast-card:hover {
  border-color: rgba(255, 105, 180, 0.4);
  transform: translateY(-2px);
}
.cast-avatar {
  width: 60px;
  height: 40px;
  margin: 0 auto 0.75rem;
  position: relative;
  display: flex;
  gap: 4px;
  justify-content: center;
}
.cast-avatar::before, .cast-avatar::after {
  content: '';
  width: 24px;
  height: 24px;
  background: #FF69B4;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 105, 180, 0.5);
}
.cast-card .actor {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.cast-card .actor .pink { color: #FF69B4; }
.cast-card .role {
  font-size: 0.7rem;
  color: #888;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ── Crew line ── */
.crew-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 2rem;
  margin-top: 0.5rem;
}
.crew-list div {
  font-size: 0.85rem;
  color: #aaa;
  padding: 0.3rem 0;
}
.crew-list div b {
  color: #FF69B4;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.15rem;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.08), rgba(229, 9, 20, 0.04));
  border-left: 3px solid #FF69B4;
  padding: 1.25rem 1.25rem 1.1rem;
}
.review .quote {
  font-size: 1.05rem;
  line-height: 1.45;
  color: #eee;
  margin-bottom: 0.8rem;
  font-style: italic;
}
.review .stars {
  color: #FF69B4;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.review .source {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
}
.review .source b { color: #fff; }

/* ── Awards ── */
.awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}
.award {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 105, 180, 0.04);
  border: 1px solid rgba(255, 105, 180, 0.15);
}
.award .medal {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #FF69B4;
  line-height: 1;
  width: 40px;
  text-align: center;
}
.award .body .title {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.award .body .year {
  font-size: 0.7rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* ── Showtimes ── */
.showtimes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
}
.showtime {
  background: #0a0a0a;
  border: 1px dashed rgba(255, 105, 180, 0.3);
  padding: 0.9rem 1rem;
}
.showtime .st-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  color: #FF69B4;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.showtime .st-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #fff;
}
.showtime .st-note {
  font-size: 0.65rem;
  color: #666;
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* ── More films strip ── */
.more-films {
  padding: 3rem 0 1rem;
  border-top: 1px dashed rgba(255, 105, 180, 0.2);
}
.more-films h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.mini-card {
  display: block;
  background: #0a0a0a;
  border: 1px solid rgba(255, 105, 180, 0.2);
  padding: 0.6rem;
  transition: all 0.2s;
  text-align: center;
}
.mini-card:hover {
  border-color: #FF69B4;
  transform: translateY(-3px);
}
.mini-card svg {
  width: 100%;
  display: block;
  aspect-ratio: 2/3;
  image-rendering: pixelated;
  shape-rendering: crispEdges;
  margin-bottom: 0.5rem;
}
.mini-card .mini-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.mini-card .mini-title .pink { color: #FF69B4; }

/* ── Back link ── */
.back-foot {
  text-align: center;
  margin-top: 3rem;
}
.back-foot a {
  display: inline-block;
  font-size: 0.75rem;
  color: #E50914;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid #E50914;
  padding: 0.6rem 1.5rem;
  transition: all 0.2s;
}
.back-foot a:hover { background: #E50914; color: #fff; }

/* ── Responsive ── */
@media (max-width: 820px) {
  .film-hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero-poster { max-width: 260px; margin: 0 auto; }
  .film-title { font-size: 3rem; }
  .film-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .film-title { font-size: 2.4rem; }
  .film-section h2 { font-size: 1.6rem; }
}
