:root {
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #141414;
  color: #d4d4d8;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid #27272a;
}
.brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: #e50914;
}
.links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}
.links a:hover,
.back:hover {
  color: #fff;
}
.hero {
  padding: 72px clamp(20px, 7vw, 90px) 54px;
  background:
    radial-gradient(circle at 80% 20%, #4b0b0f 0, transparent 38%),
    linear-gradient(135deg, #090909, #18181b);
}
.eyebrow {
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.75rem;
}
.hero h1 {
  max-width: 900px;
  margin: 0.5rem 0 1rem;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1;
}
.hero p {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.content {
  max-width: 1180px;
  margin: auto;
  padding: 46px 20px 80px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid #3f3f46;
  border-radius: 18px;
  background: linear-gradient(160deg, #3f0c10, #09090b 65%);
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.card::before{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.98) 5%,rgba(0,0,0,.25) 75%),var(--cover,linear-gradient(160deg,#3f0c10,#09090b));background-size:cover;background-position:center;z-index:-1;transition:transform .35s}.card:hover::before{transform:scale(1.05)}
.card:hover {
  transform: translateY(-4px);
  border-color: #dc2626;
}
.card h2,
.card h3 {
  margin: 0 0 8px;
  color: #fff;
}
.card p {
  margin: 0;
  line-height: 1.55;
}
.movies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}
.movie {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #3f3f46;
  background: #09090b;
  overflow: hidden;
}
.movie-poster{display:block;width:calc(100% + 40px);max-width:none;aspect-ratio:2/3;object-fit:cover;margin:-20px -20px 18px;background:#27272a}.poster-missing{background:linear-gradient(160deg,#3f0c10,#09090b)}
.movie:hover {
  border-color: #dc2626;
  background: #18181b;
}
.number {
  color: #ef4444;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.movie strong {
  margin: 12px 0 6px;
  color: #fff;
  font-size: 1.08rem;
}
.play {
  margin-top: auto;
  padding-top: 18px;
  color: #f87171;
  font-weight: 800;
}
.intro {
  max-width: 820px;
  margin: 0 0 30px;
  line-height: 1.75;
}
.crumbs {
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: #a1a1aa;
}
.footer {
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid #27272a;
  color: #71717a;
}
@media (max-width: 640px) {
  .links {
    gap: 10px;
    font-size: 0.75rem;
  }
  .nav {
    padding: 14px;
  }
  .hero {
    padding-top: 48px;
  }
  .movies {
    grid-template-columns: 1fr 1fr;
  }
  .movie {
    min-height: 155px;
    padding: 15px;
  }
  .movie-poster{width:calc(100% + 30px);margin:-15px -15px 14px}
}
@media (max-width: 420px) {
  .movies {
    grid-template-columns: 1fr;
  }
}
