*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #1c1b3b 0, #050509 55%);
  color: #f5f5f7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 5vw;
  background: rgba(5, 5, 10, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #ffb347, #ff416c);
  color: #050509;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.title-block h1 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subtitle {
  margin: 0;
  font-size: 0.75rem;
  color: #b5b7c8;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
}

.main-nav a {
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #d8d8e8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
}

.main-nav a:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 5vw 3.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255, 190, 92, 0.55), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(255, 65, 108, 0.55), transparent 65%),
    linear-gradient(135deg, #050815 0%, #15082a 45%, #290a3f 100%);
  opacity: 0.9;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.7), transparent 50%);
  z-index: -1;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffd9a0;
  margin-bottom: 0.75rem;
}

.hero-text h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.3rem, 4vw, 3rem);
}

.logline {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  color: #f0e6ff;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #ffb347, #ff416c);
  color: #050509;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #f5f5f7;
  background: transparent;
}

.btn:hover {
  filter: brightness(1.05);
}

.hero-poster img {
  width: 100%;
  max-width: 360px;
  border-radius: 1.5rem;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  object-fit: cover;
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 5vw;
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header h3 {
  margin: 0 0 0.3rem;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header p {
  margin: 0;
  color: #c3c5d8;
  font-size: 0.95rem;
}

/* Trailer */
.trailer-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.8);
  max-width: 900px;
  margin: 0 auto;
}

.trailer-frame iframe {
  width: 100%;
  height: min(60vw, 480px);
  border: none;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.split p {
  color: #d5d6e5;
  font-size: 0.98rem;
}

.story-facts {
  background: rgba(11, 12, 25, 0.95);
  border-radius: 1.25rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-facts h4 {
  margin-top: 0;
}

.story-facts ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #c8c9de;
}

/* Cast */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.cast-card {
  background: rgba(10, 11, 22, 0.96);
  border-radius: 1.25rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.75);
}

.cast-card h4 {
  margin: 0 0 0.25rem;
}

.cast-card .role {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffb347;
}

.cast-card .bio {
  margin: 0;
  font-size: 0.9rem;
  color: #cccede;
}

/* Awards */
.section.highlight {
  background: radial-gradient(circle at top, rgba(255, 179, 71, 0.12), transparent 60%);
  border-radius: 2rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}

.awards-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #e9e2ff;
}

.awards-list li {
  margin-bottom: 0.4rem;
}

.award-note {
  background: rgba(11, 12, 25, 0.98);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #dcd6ff;
}

/* Soundtrack */
.soundtrack-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.soundtrack-layout p {
  color: #d5d6e5;
  font-size: 0.95rem;
}

.album-art img {
  width: 100%;
  max-width: 260px;
  border-radius: 1.5rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(8, 8, 18, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.6rem 0.85rem 0.85rem;
  font-size: 0.8rem;
  color: #d6d6e8;
}

/* Contact */
.contact-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 1.6rem 1.4rem;
  border-radius: 1.5rem;
  background: rgba(8, 9, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  text-align: center;
}

.contact-name {
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.contact-email a {
  color: #ffb347;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 0.9rem 5vw 1.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: #a7a8bd;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #050509;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-poster {
    order: -1;
    display: flex;
    justify-content: center;
  }
  .hero-poster img {
    max-width: 280px;
  }
  .split,
  .awards-grid,
  .soundtrack-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .main-nav {
    display: none; /* simple for now on small screens */
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-inline: 1.25rem;
  }
  .section {
    padding-inline: 1.5rem;
  }
}
