* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "roc-grotesk", sans-serif;
  font-weight: 700;
  font-style: normal;
  overflow: hidden;
}

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

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

.bg-video--mobile {
  display: none;
}

.content {
  position: relative;
  z-index: 3;
  width: min(460px, 76vw);
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(36px, 4.833vw, 92.8px);
  padding: 10vh 0 10vh;
  mix-blend-mode: difference;
}

.content div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 1.666vw, 32px);
}

.logo {
  width: clamp(260px, 26.8229vw, 515px);
  height: auto;
  display: block;
}

.tickets {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(34px, 2.5vw, 48px);
  padding: clamp(10px, 0.781vw, 15px) clamp(28px, 2.864vw, 55px);
  border: 2px solid #fff;
  border-radius: clamp(3px, 0.26vw, 5px);
  background: #fff;
  color: #000;
  font-size: clamp(14px, 1.041vw, 20px);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, opacity .2s ease;
  font-weight: 500;
}

/* .tickets:hover,
.socials a:hover,
.newsletter:hover {
  transform: translateY(-2px);
  opacity: .8;
} */

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 0.9375vw, 18px);
}

.socials a {
  width: clamp(32px, 2.1875vw, 42px);
  height: clamp(32px, 2.1875vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}

.socials img {
  width: 100%;
  height: 100%;
  display: block;
}

.newsletter {
  display: inline-block;
  color: #fff;
  font-size: clamp(14px, 0.9896vw, 19px);
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: clamp(3px, 0.208vw, 4px);
  text-transform: uppercase;
  transition: transform .2s ease, opacity .2s ease;
}

.marquee {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 4;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
}

.marquee--top {
  top: clamp(16px, 1.6146vw, 31px);
}

.marquee--bottom {
  bottom: clamp(16px, 1.145vw, 22px);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.145vw, 22px);
  min-width: max-content;
  font-size: clamp(14px, 1.0938vw, 21px);
  line-height: 1;
  text-transform: uppercase;
  align-items: baseline;
}

.marquee__track img {
  display: block;
  width: clamp(120px, 8.8542vw, 170px);
  height: auto;
}

.bars {
  font-size: clamp(16px, 1.25vw, 24px);
  letter-spacing: clamp(2px, 0.2083vw, 4px);
  font-weight: 700;
}

.marquee__track--ltr {
  animation: marquee-ltr 35s linear infinite;
}

.marquee__track--rtl {
  animation: marquee-rtl 35s linear infinite;
}

@keyframes marquee-ltr {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes marquee-rtl {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1024px) {
  .content {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .bg-video--desktop {
    display: none;
  }

  .bg-video--mobile {
    display: block;
  }

  .content {
    width: 86vw;
    padding-top: 10vh;
    padding-bottom: 9vh;
  }
}