html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} 

body {
  background: black;
  color: #f1e3b6;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Background */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,.3), rgba(0,0,0,.9));
  z-index: -1;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tagline {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: .85;
  white-space: nowrap;
  text-align: center;
}


.release-date {
  font-family: "Cinzel", serif;
  font-size: clamp(28px,6vw,56px);
  letter-spacing: 3px;
  margin: 10px 0;
}

.subline {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(0,0,0,.6);
  padding: 14px;
  border-radius: 12px;
  min-width: 80px;
}

.countdown span {
  font-family: "Cinzel", serif;
  font-size: 26px;
}

.countdown small {
  font-size: 10px;
  letter-spacing: 2px;
}

/* Title */
.title {
  font-family: "Cinzel", serif;
  font-size: clamp(36px,9vw,78px);
  letter-spacing: clamp(4px,1.5vw,12px);
  margin-bottom: 30px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
}

.primary {
  background: #f1e3b6;
  color: black;
  text-decoration: none;
}

.outline {
  background: transparent;
  border: 1px solid #f1e3b6;
  color: #f1e3b6;
}

/* CAST */
.cast-section {
  padding: 120px 20px;
  text-align: center;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 38px;
  margin-bottom: 60px;
}

.group-title {
  letter-spacing: 4px;
  margin: 40px 0 20px;
  color: #d8c88b;
}

.card-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 240px;
  height: 340px;
  border: 1px solid rgba(241,227,182,.6);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: .8s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
}

.card .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
  }

  .card {
    width: 90%;
    height: 380px;
  }
    .tagline {
    font-size: 9px;
    letter-spacing: 2px;
  }
}
/* FOOTER */
.site-footer {
  padding: 120px 20px 80px;
  text-align: center;
  background: black;
}

.footer-title {
  font-family: "Cinzel", serif;
  font-size: 36px;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.footer-copy,
.footer-disclaimer {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.footer-links {
  margin: 20px 0 40px;
  font-size: 13px;
  opacity: 0.5;
}

.footer-heading {
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.developer-name {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: #f1e3b6;
  text-decoration: none;
  margin-bottom: 30px;
}

.developer-name:hover {
  text-decoration: underline;
}

.footer-handles p {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.5;
  margin: 6px 0;
}
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.insta-link i {
  font-size: 18px;
  color: #f1e3b6;
}
.footer-handles p {
  color: #ffffff;
}
.developer-name,
.developer-name.insta-link {
  font-size: 30px;
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
}

