body {
  margin: 0;
  background: #050505;
  color: white;
  font-family: Arial;
}

/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.6);
  z-index: 10;
}

/* HERO */
.hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: 1s;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent, black);
}

.hero-text {
  position: absolute;
  bottom: 60px;
  left: 40px;
}

/* GRID */
.section {
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  padding: 20px;
}

.card {
  cursor: pointer;
  transition: 0.4s;
}

.card:hover {
  transform: scale(1.08);
  filter: brightness(1.2);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

/* PLAYER */
.cinema {
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

video {
  width: 95%;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(255,255,255,0.1);
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, black 90%);
  pointer-events: none;
}
