:root {
  --bg: #070707;
  --panel: #101010;
  --text: #ffffff;
  --muted: #d8d8d8;
  --gold: #ffd322;
  --amber: #ff9d00;
  --red: #d61515;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 21, 21, 0.34), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(255, 211, 34, 0.28), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #131313 45%, #050505 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(14px, 4vw, 46px) 0 28px;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.kicker {
  margin: 0;
  color: var(--gold);
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(214, 21, 21, 0.7);
}

.lead {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.cta-button,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  color: #101010;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 14px 34px rgba(255, 157, 0, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-button:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 157, 0, 0.44);
}

.date-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.poster-frame {
  position: relative;
  border: 1px solid rgba(255, 211, 34, 0.42);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 211, 34, 0.06);
  overflow: hidden;
}

.poster-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 70px rgba(255, 211, 34, 0.18);
}

.poster-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.video-section {
  display: grid;
  gap: 20px;
  margin-top: clamp(46px, 8vw, 86px);
}

.video-section,
.raffle-info,
.location-section,
.brand-section,
.final-cta {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.section-heading {
  display: grid;
  gap: 8px;
}

.section-heading h2,
.final-cta h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 400;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: 82svh;
  background: #000;
  object-fit: contain;
}

.custom-player {
  isolation: isolate;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.custom-player.is-playing {
  border-color: rgba(255, 211, 34, 0.72);
  box-shadow: var(--shadow), 0 0 0 3px rgba(255, 211, 34, 0.16), 0 0 46px rgba(255, 157, 0, 0.22);
}

.custom-player video {
  cursor: pointer;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  color: #101010;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62)),
    linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 58%);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.custom-player.is-playing .video-play-overlay {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  display: grid;
  place-items: center;
  width: clamp(82px, 16vw, 132px);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 44px rgba(255, 211, 34, 0.42);
}

.play-icon::before {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8%;
  content: "";
  border-top: clamp(18px, 3.4vw, 30px) solid transparent;
  border-bottom: clamp(18px, 3.4vw, 30px) solid transparent;
  border-left: clamp(28px, 5vw, 46px) solid #111;
}

.video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.82);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.custom-player.is-idle.is-playing .video-controls {
  opacity: 0;
  transform: translateY(10px);
}

.custom-player.is-idle.is-playing:hover .video-controls,
.custom-player.is-idle.is-playing:focus-within .video-controls {
  opacity: 1;
  transform: translateY(0);
}

.control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 44px;
  padding: 0 12px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.control-button:hover {
  background: rgba(255, 211, 34, 0.22);
}

.control-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.custom-player.is-playing .control-play-icon {
  width: 16px;
  height: 18px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
}

.progress-wrap {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.video-progress {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.time-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.raffle-info,
.location-section,
.brand-section {
  margin-top: clamp(44px, 8vw, 86px);
}

.raffle-info {
  display: grid;
  gap: 24px;
}

.raffle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.raffle-block {
  padding: 28px clamp(18px, 3vw, 32px);
}

.raffle-block + .raffle-block {
  border-left: 1px solid var(--line);
}

.raffle-block h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.raffle-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.raffle-block .responsible {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 700;
}

.price-list strong {
  color: #fff;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.location-copy {
  display: grid;
  gap: 14px;
}

.location-copy h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 400;
  text-transform: uppercase;
}

.location-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.map-link {
  width: fit-content;
  color: var(--gold);
  font-weight: 900;
  text-underline-offset: 5px;
}

.map-frame {
  min-height: 420px;
  border: 1px solid rgba(255, 211, 34, 0.42);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.lazy-frame:not([src]) {
  opacity: 0;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 500px);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-content {
  display: grid;
  gap: 10px;
}

.brand-section h2 {
  max-width: 12ch;
  margin-top: 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 400;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.brand-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.facebook-link,
.site-footer a {
  color: var(--gold);
  font-weight: 900;
  text-underline-offset: 5px;
}

.facebook-embed {
  width: 100%;
  max-width: 500px;
  min-height: 620px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.facebook-embed iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 620px;
  border: 0;
}

.final-cta {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-top: clamp(44px, 8vw, 86px);
  padding: clamp(28px, 6vw, 54px);
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), #870c0c 46%, #171717);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 700;
}

.cta-button-dark {
  color: #101010;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  min-height: 48px;
  padding-inline: 18px;
}

.site-footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.noscript-message {
  position: fixed;
  right: 18px;
  bottom: 82px;
  left: 18px;
  z-index: 30;
  max-width: 620px;
  margin: auto;
  padding: 14px 18px;
  color: #fff;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171717;
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 24px, 620px);
    padding-bottom: 88px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 20px;
  }

  .hero-copy {
    text-align: center;
    justify-items: center;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .lead {
    max-width: 36ch;
  }

  .cta-row {
    justify-content: center;
  }

  .raffle-grid,
  .location-section,
  .brand-section {
    grid-template-columns: 1fr;
  }

  .facebook-embed {
    margin-right: auto;
  }

  .site-footer {
    width: min(100% - 24px, 620px);
  }

  .raffle-block + .raffle-block {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 18px, 430px);
    padding-top: 10px;
  }

  .hero {
    gap: 20px;
  }

  .cta-button {
    width: 100%;
  }

  .date-pill {
    justify-content: center;
    width: 100%;
  }

  .final-cta {
    padding: 26px 18px;
  }

  .raffle-block {
    padding: 22px 8px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }

  .facebook-embed,
  .facebook-embed iframe {
    min-height: 540px;
    height: 540px;
  }

  .video-controls {
    right: 8px;
    bottom: 8px;
    left: 8px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
  }

  .mute-toggle {
    display: none;
  }

  .floating-whatsapp {
    right: 9px;
    bottom: 10px;
    left: 9px;
    width: auto;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    width: min(100% - 18px, 430px);
    padding-bottom: 78px;
  }
}
