:root {
  --orange: #e8862c;
  --red: #b23a2f;
  --green: #5a6b3f;
  --dark: #131313;
  --dark-2: #1b1b1b;
  --card: #1f1f1f;
  --card-border: #333;
  --text: #f2eee6;
  --muted: #a8a29a;
  --gradient: linear-gradient(90deg, var(--orange), var(--red), var(--green));
  --font-display: "Anton", "Rubik", sans-serif;
  --font-body: "Rubik", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 134, 44, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(232, 134, 44, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(242, 238, 230, 0.4);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-small { padding: 0.55rem 1.3rem; font-size: 0.9rem; }
.btn-tickets { font-size: 1.1rem; padding: 1.1rem 2.8rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 5%;
  background: rgba(19, 19, 19, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { height: 38px; width: auto; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/bg-hero.webp");
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 900px;
}
.hero-logo {
  width: min(1000px, 96vw);
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.6));
}
.hero-tag {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-date {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  letter-spacing: 0.03em;
  margin-top: 0.3rem;
  line-height: 1.15;
}
.hero-date span {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-place {
  color: var(--text);
  font-size: 1rem;
  opacity: 0.9;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-arrow {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- Sections ---------- */
.section {
  padding: 4rem 5%;
  max-width: 1000px;
  margin: 0 auto;
}

/* ---------- Trailer ---------- */
.trailer-section {
  max-width: 1320px;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--card-border);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.embed-wrapper {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: #fff;
}
.embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
}
.embed-fallback {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.embed-fallback a { text-decoration: underline; color: var(--orange); }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--card-border);
  color: var(--muted);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}
.footer-links a { text-decoration: underline; }
.license { font-size: 0.78rem; max-width: 500px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  .section { padding: 3rem 6%; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .embed-wrapper iframe { height: 560px; }
  .navbar { display: none; }
  .hero { padding: 2rem 0.5rem 3rem; }
  .hero-logo { width: 108vw; }
}
