*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "georgia", Georgia, serif;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 100vh;
  min-height: 100svh;
  padding: 4rem 1rem;
  background-color: #0b2447;
  color: #fff;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero__embed {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-family: "gunplay", "georgia", Georgia, sans-serif;
  font-size: clamp(3.35rem, 6vw + 1rem, 4.5rem);
  line-height: 1.1;
  margin: 0;
  transform: rotate(-10deg) translateX(-20%) translateY(-30%) skew(-10deg);
  text-shadow: 4px 4px 8px black;
  text-transform: uppercase;
  width:fit-content;
}

@media (max-width: 1050px) {
  .hero h1 {
    transform: rotate(-10deg) translateX(0%) translateY(-30%) skew(-10deg);
    text-align: center;
    margin: 0 auto;
  }
}

.hero__embed {
  max-width: min(90%, 720px);
  margin-inline: auto;
}

.embed-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero__bg-video {
    display: none;
  }

  .hero {
    background-image: url("assets/hero-poster.jpg");
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 480px) {
  .hero {
    gap: 1.25rem;
    padding: 3rem 1rem;
  }
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 100vh;
  min-height: 100svh;
  padding: 4rem 1rem;
  background-color: #0b2447;
  color: #fff;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.not-found p {
  margin: 0;
  font-size: 1.125rem;
}

.not-found a {
  color: #fff;
}

.site-footer {
  padding: 2rem 0;
  background-color: #000000;
  color: #fff;
  text-align: center;
}

.site-footer__disclaimer {
  width: fit-content;
  max-width: 550px;
  margin: 0 auto;
  padding: 0.75rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 1);
  font-size: 0.8rem;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0.5;
}