@font-face {
  font-display: swap;
  font-family: "Aniko";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/aniko-extrabold.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Aniko";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/aniko-regular.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/futura-pt-bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/futura-pt-medium.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --black: #000;
  --white: #fff;
  --gray: #bfbfbf;
  --red: #ed0000;
  --ink: #0a0a0a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family:
    "Futura PT", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1,
h2,
p {
  margin-top: 0;
}

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: clamp(18px, 2.2vw, 32px);
  background: var(--red);
}

.hero::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 2vw, 24px);
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.76);
  pointer-events: none;
}

.hero__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 0;
}

.kicker,
.eyebrow,
.fact__label {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Aniko", "Futura PT", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  width: min(760px, 84vw);
  margin-bottom: clamp(18px, 2.8vw, 32px);
  padding: clamp(8px, 1.2vw, 14px);
  background: var(--red);
  filter: drop-shadow(12px 12px 0 rgba(0, 0, 0, 0.86));
}

.hero h1 {
  max-width: 1080px;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Aniko", "Futura PT", sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 8px 8px 0 var(--black);
  overflow-wrap: break-word;
}

.hero h1 span {
  display: inline;
}

.hero h1 span + span::before,
.hero__venue span + span::before {
  content: " ";
}

.hero__venue {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(24px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--black);
}

.hero__venue span {
  display: inline;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 32px);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 0;
  padding: 0 22px;
  color: var(--black);
  font-family: "Aniko", "Futura PT", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--black);
}

.button--primary {
  background: var(--white);
}

.button--static {
  border-color: var(--white);
  background: var(--black);
  color: var(--white);
}

.button--dark {
  background: var(--red);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--black);
}

.hero__mark {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero__mark--one {
  top: clamp(42px, 8vh, 82px);
  right: clamp(24px, 7vw, 96px);
  width: clamp(92px, 15vw, 210px);
  transform: rotate(10deg);
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--white);
  background: var(--black);
  color: var(--white);
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 16px 0;
  animation: ticker-loop 19s linear infinite;
}

.ticker span {
  flex: 0 0 auto;
  padding-left: 40px;
  font-family: "Aniko", "Futura PT", sans-serif;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
}

.ticker span::after {
  content: "/";
  margin-left: 40px;
  color: var(--red);
}

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

.fact {
  min-height: clamp(260px, 28vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3.2vw, 48px);
  color: var(--black);
}

.fact + .fact {
  border-left: 2px solid var(--black);
}

.fact--red {
  background: var(--red);
  color: var(--white);
}

.fact--black {
  background: var(--black);
  color: var(--white);
}

.fact--white {
  background: var(--white);
}

.fact__label {
  color: inherit;
}

.fact h2 {
  margin-bottom: 10px;
  font-family: "Aniko", "Futura PT", sans-serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.fact p:not(.fact__label) {
  margin-bottom: 0;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.listen {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(46px, 8vw, 112px) clamp(22px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

.listen .eyebrow {
  color: var(--red);
}

.listen h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: "Aniko", "Futura PT", sans-serif;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.listen p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.15;
}

.spotify-embed {
  border: 2px solid var(--white);
  background: #111;
  box-shadow: 10px 10px 0 var(--red);
}

.spotify-embed iframe {
  display: block;
  border: 0;
  border-radius: 0;
}

.rules {
  min-height: 50svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(44px, 8vw, 112px) clamp(22px, 5vw, 72px);
  background: var(--white);
  color: var(--black);
}

.rules .eyebrow {
  color: var(--black);
}

.rules h2,
.final h2 {
  max-width: 1080px;
  margin-bottom: 0;
  font-family: "Aniko", "Futura PT", sans-serif;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.rules h2 span {
  display: inline;
}

.rules h2 span + span::before {
  content: " ";
}

.poster {
  display: grid;
  place-items: center;
  min-height: 62svh;
  padding: clamp(36px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--red);
}

.poster img {
  width: min(1160px, 100%);
  padding: clamp(10px, 2vw, 22px);
  background: var(--red);
}

.final {
  min-height: 58svh;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: clamp(42px, 8vw, 112px) clamp(22px, 5vw, 72px);
  background: var(--black);
}

.final .eyebrow {
  color: var(--red);
}

.final h2 {
  color: var(--white);
  text-shadow: 7px 7px 0 var(--black);
}

.final p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--white);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.mobile-call {
  display: none;
}

@keyframes ticker-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .facts,
  .listen,
  .rules {
    grid-template-columns: 1fr;
  }

  .fact + .fact {
    border-top: 2px solid var(--black);
    border-left: 0;
  }

  .rules {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 82svh;
    align-items: end;
    padding: 24px 18px 36px;
  }

  .hero::before {
    inset: 10px;
  }

  .brand-logo {
    width: min(420px, 91vw);
    margin-bottom: 24px;
    padding: 8px;
    filter: drop-shadow(7px 7px 0 rgba(0, 0, 0, 0.9));
  }

  .hero h1 {
    font-size: clamp(40px, 12.4vw, 50px);
    line-height: 0.92;
    text-shadow: 5px 5px 0 var(--black);
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 span + span::before,
  .hero__venue span + span::before {
    content: "";
  }

  .hero h1 span:nth-child(3) {
    font-size: 0.74em;
  }

  .hero__venue {
    max-width: 100%;
    font-size: clamp(20px, 6.5vw, 28px);
    line-height: 0.96;
  }

  .hero__venue span {
    display: block;
  }

  .hero__actions {
    display: none;
  }

  .hero__mark--one {
    top: 48px;
    right: 24px;
    width: 92px;
  }

  .ticker__track {
    gap: 28px;
    padding: 12px 0;
    animation-duration: 15s;
  }

  .ticker span {
    padding-left: 28px;
    font-size: 14px;
  }

  .ticker span::after {
    margin-left: 28px;
  }

  .fact {
    min-height: 150px;
    justify-content: center;
    padding: 24px 22px;
  }

  .fact h2 {
    margin-bottom: 8px;
    font-size: clamp(48px, 14vw, 66px);
  }

  .fact p:not(.fact__label) {
    font-size: clamp(18px, 5.2vw, 26px);
  }

  .listen,
  .rules,
  .final {
    min-height: 54svh;
    padding-inline: 18px;
  }

  .listen {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .listen h2 {
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .spotify-embed {
    box-shadow: 6px 6px 0 var(--red);
  }

  .rules h2,
  .final h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .rules h2 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 0.94;
  }

  .rules h2 span {
    display: block;
  }

  .rules h2 span + span::before {
    content: "";
  }

  .poster {
    min-height: 46svh;
    padding-inline: 14px;
  }

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: block;
    padding: 10px;
    background: var(--black);
    border-top: 2px solid var(--white);
  }

  .mobile-call a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    font-family: "Aniko", "Futura PT", sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
  }
}
