:root {
  color-scheme: dark;
  --ink: #060609;
  --paper: #fff9f4;
  --muted: #c4bdc4;
  --pink: #ff4f9a;
  --cyan: #45d8e8;
  --gold: #ffc247;
  --scene-x: 0px;
  --scene-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loader {
  display: none;
}

.js .loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  background: #050508;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.js .loader.is-finished {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader__mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 34px;
  box-shadow: 0 0 28px rgba(255, 79, 154, .24);
  animation: seal-in 650ms ease both;
}

.loader p {
  margin: 18px 0 12px;
  color: #d6cfd6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loader__meter {
  width: 180px;
  height: 2px;
  overflow: hidden;
  background: #2a242b;
}

.loader__meter span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--pink);
  animation: loader-meter 850ms ease-in-out infinite;
}

.scene {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #080a14;
}

.city-pan {
  position: absolute;
  inset: -2%;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.04);
  transition: transform 650ms cubic-bezier(.2, .8, .2, 1);
}

.city-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: city-scroll 96s linear infinite;
}

.city-track img {
  display: block;
  flex: none;
  width: auto;
  height: 100%;
  user-select: none;
}

.scene__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 8, .1), rgba(4, 4, 8, .3) 42%, rgba(4, 4, 7, .9) 100%),
    linear-gradient(90deg, rgba(28, 5, 18, .48), transparent 38%, transparent 70%, rgba(4, 14, 21, .35));
}

.scene__traffic {
  position: absolute;
  right: -20vw;
  bottom: 9%;
  width: 42vw;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 13px 2px rgba(255, 194, 71, .55);
  animation: traffic-pass 13s linear infinite;
}

.age-gate {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 100vh;
  min-height: 100dvh;
}

.brand-stage {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 22px 24px 10px;
}

.brand-stage__inner {
  display: flex;
  width: min(760px, 88vw);
  max-height: 54vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-stage__inner p {
  margin: 0 0 4px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}

.brand-stage__inner img {
  display: block;
  width: 100%;
  max-height: calc(54vh - 26px);
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .64));
  animation: brand-float 7s ease-in-out infinite;
}

.threshold {
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: rgba(5, 5, 8, .9);
  backdrop-filter: blur(18px);
}

.threshold::before {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold) 48%, var(--cyan));
  content: "";
}

.threshold__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 22px 48px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 16px;
}

.threshold__warning {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.age-seal {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  background: #100a10;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 36px;
  box-shadow: inset 0 0 0 5px #100a10, inset 0 0 0 6px rgba(255, 79, 154, .4);
}

.threshold__eyebrow {
  margin: 0 0 4px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.threshold h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.threshold__summary {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.threshold__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-content: center;
}

.confirm,
.leave {
  min-height: 48px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 200ms ease;
}

.confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--pink);
  color: #10030a;
}

.confirm b {
  font-size: 18px;
  transition: transform 200ms ease;
}

.leave {
  display: grid;
  padding: 0 15px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #d2cdd2;
}

.confirm:hover,
.confirm:focus-visible {
  background: #ff78b2;
  outline: 0;
  transform: translateY(-2px);
}

.confirm:hover b,
.confirm:focus-visible b {
  transform: translate(3px, -3px);
}

.leave:hover,
.leave:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: 0;
}

.threshold__actions p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #928c93;
  font-size: 9px;
  line-height: 1.4;
}

.access-terms {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #aaa4ab;
  font-size: 10px;
}

.access-terms summary {
  width: fit-content;
  cursor: pointer;
  color: #c9c3ca;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.access-terms summary:hover,
.access-terms summary:focus-visible {
  color: var(--gold);
  outline: 0;
}

.access-terms__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  padding-top: 12px;
  line-height: 1.5;
}

.access-terms__content p {
  margin: 0;
}

.filters {
  grid-column: 1 / -1;
}

.filters a {
  margin-left: 12px;
  color: var(--cyan);
}

.filters a:hover,
.filters a:focus-visible {
  color: #fff;
  outline: 0;
}

body.is-entering .age-gate {
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 420ms ease;
}

@keyframes city-scroll {
  to {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

@keyframes traffic-pass {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-150vw);
  }
}

@keyframes brand-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes seal-in {
  from {
    opacity: 0;
    transform: scale(.76) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes loader-meter {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(245%);
  }
}

@media (max-width: 800px) {
  .age-gate {
    grid-template-rows: minmax(250px, 42vh) auto;
  }

  .brand-stage {
    padding: 16px 18px 6px;
  }

  .brand-stage__inner {
    width: min(560px, 92vw);
    max-height: 40vh;
  }

  .brand-stage__inner img {
    max-height: calc(40vh - 24px);
  }

  .threshold__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 32px, 620px);
    padding: 20px 0 14px;
  }

  .threshold__warning {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
  }

  .age-seal {
    width: 70px;
    height: 70px;
    font-size: 29px;
  }

  .threshold h2 {
    font-size: 28px;
  }

  .threshold__actions {
    grid-template-columns: 1fr;
  }

  .leave {
    min-height: 42px;
  }

  .threshold__actions p {
    grid-column: 1;
  }

  .access-terms {
    grid-column: 1;
  }

  .access-terms__content {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-column: 1;
  }

  .filters a {
    display: inline-block;
    margin: 5px 10px 0 0;
  }
}

@media (max-width: 430px) {
  .brand-stage__inner p {
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .threshold__warning {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .age-seal {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .threshold h2 {
    font-size: 25px;
  }

  .threshold__summary {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .city-track {
    transform: translate3d(-12%, 0, 0);
  }
}
