* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #020617;
  color: #ffffff;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.site-label,
.section-label {
  margin: 0 0 10px;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
}

.site-header h1,
.hero h2,
.section-head h2,
.site-footer h2 {
  margin: 0;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: #cbd5e1;
  text-decoration: none;
}

.nav a:hover {
  color: #ffffff;
}

.hero {
  background: linear-gradient(135deg, #020617 0%, #0f172a 60%, #1e293b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
}

.hero h2 {
  font-size: 52px;
  line-height: 1.1;
}

.hero-text,
.section-description,
.movie-content p,
.update-card p,
.footer-text,
.hero-card-text {
  color: #cbd5e1;
  line-height: 1.7;
}

.hero-text {
  max-width: 760px;
  margin-top: 24px;
  font-size: 18px;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-number {
  font-size: 72px;
  font-weight: bold;
  color: #fbbf24;
  margin: 12px 0;
}

.main-content {
  padding: 70px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.section-head-stack {
  display: block;
}

.section-head h2 {
  font-size: 38px;
}

.section-description {
  max-width: 640px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.movie-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.movie-cover-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.movie-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge,
.year {
  position: absolute;
  z-index: 2;
  font-size: 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.badge {
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  background: rgba(251, 191, 36, 0.14);
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.year {
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #e2e8f0;
}

.movie-content {
  padding: 24px;
}

.movie-content h3 {
  margin: 0 0 16px;
  font-size: 28px;
}

.movie-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 14px;
}

.updates-section {
  margin-top: 80px;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.update-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.2);
}

.update-card h3 {
  margin-top: 0;
}

.site-footer {
  margin-top: 80px;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.mail-link {
  display: inline-block;
  margin-top: 12px;
  color: #fbbf24;
  text-decoration: none;
  font-size: 20px;
}

.mail-link:hover {
  color: #fde68a;
}

@media (max-width: 1000px) {
  .hero-grid,
  .cards-grid,
  .updates-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .cards-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-grid {
    padding: 50px 0;
  }

  .hero h2 {
    font-size: 34px;
  }

  .section-head h2,
  .site-footer h2 {
    font-size: 28px;
  }

  .movie-content h3 {
    font-size: 24px;
  }

  .nav {
    gap: 12px;
  }
}
