* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("film-2.jpeg") center/cover no-repeat;
  position: relative;
  animation: zoomPoster 12s ease-in-out infinite alternate;
}

@keyframes zoomPoster {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.title {
  font-size: 56px;
  letter-spacing: 3px;
}

.title span {
  color: crimson;
}

.desc {
  max-width: 600px;
  margin: 20px 0;
  line-height: 1.6;
}

/* BUTTON */
.play-btn {
  padding: 14px 36px;
  font-size: 18px;
  background: crimson;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px crimson;
}

/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.video-modal video {
  width: 90%;
  max-width: 1100px;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

/* CREDIT */
.credits {
  padding: 50px 20px;
  text-align: center;
  background: #0a0a0a;
}

.credits h2 {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  background: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .title { font-size: 40px; }
  .desc { font-size: 15px; }
}
