:root {
  --bg: #0e0e11;
  --fg: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #d4af37;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

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

.hero {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(circle at top, #1c1c22, #0e0e11);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
}

.primary {
  background: var(--accent);
  color: #000;
}

.secondary {
  border: 1px solid var(--muted);
}

.featured {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 24px;
}

.featured img {
  width: 100%;
  border-radius: 12px;
}

.badge {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
}

.univers, .heritage, .cta {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 24px;
}

.univers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.posters.large {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.poster img {
  width: 100%;
  border-radius: 8px;
  transition: transform .3s ease;
}

.poster img:hover {
  transform: scale(1.05);
}

.cta {
  text-align: center;
  padding-bottom: 120px;
}

/* Animations */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.fade.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .posters {
    grid-template-columns: repeat(3, 1fr);
  }
}
