html,
body {
  -webkit-font-smoothing: antialiased;
  background: #000;
  color: #fff;
  font-family: Arial, "Helvetica Neue", sans-serif;
  margin: 0;
  min-height: 100%;
  padding: 0;
  width: 100%;
}

* {
  box-sizing: border-box;
}

body.is-locked {
  overflow: hidden;
}

img,
video {
  border: 0;
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ccc;
  color: #0072b1;
  display: flex;
  height: 58px;
  justify-content: space-between;
  left: 0;
  padding: 0 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  height: 100%;
  min-width: 0;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand span {
  color: #0072b1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 20px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.login-link {
  color: #0072b1;
}

.join-link {
  background: #ff444e;
  border-radius: 2px;
  color: #fff;
  padding: 12px 17px;
}

.page-shell {
  padding-top: 58px;
}

.hero-strip {
  background: #000;
  padding: 0;
}

.hero-card {
  aspect-ratio: 3700 / 1348;
  background: #111;
  display: block;
  max-height: 525px;
  min-height: 250px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-card::after {
  background:
    radial-gradient(ellipse at 24% 50%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 36%, rgba(0, 0, 0, 0.45) 58%, rgba(0, 0, 0, 0) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 30%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0) 100%);
  content: "";
  filter: blur(18px);
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-28px) scale(1.06);
  width: min(850px, 64vw);
}

.hero-card > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-copy {
  isolation: isolate;
  left: clamp(20px, 5vw, 82px);
  max-width: min(570px, 48vw);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-copy::before {
  background: rgba(0, 0, 0, 0.58);
  border-radius: 999px;
  content: "";
  filter: blur(34px);
  inset: -38px -54px -34px -42px;
  opacity: 0.92;
  position: absolute;
  z-index: -1;
}

.hero-copy strong {
  display: block;
  font-size: clamp(38px, 5.2vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-copy small {
  display: block;
  font-size: clamp(18px, 1.9vw, 31px);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 16px;
}

.hero-copy em {
  align-items: center;
  background: #ff444e;
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  font-size: clamp(15px, 1.15vw, 19px);
  font-style: normal;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  margin-top: 24px;
  min-height: 48px;
  padding: 0 28px;
  text-transform: uppercase;
}

.cover-strip {
  --cover-gap: 6px;
  background: #000;
  display: block;
  overflow: hidden;
  padding: 6px 0 0;
  width: 100%;
}

.cover-track {
  animation: coverCarousel 42s linear infinite;
  display: flex;
  gap: var(--cover-gap);
  width: max-content;
}

.cover-card {
  aspect-ratio: 2 / 3;
  background: #101010;
  cursor: pointer;
  display: block;
  flex: 0 0 clamp(150px, 13.8vw, 255px);
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.cover-card img {
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.cover-card:hover img,
.cover-card:focus-visible img {
  filter: brightness(0.78);
  transform: scale(1.025);
}

.video-grid,
.gallery-grid {
  background: #000;
  display: grid;
  gap: 6px;
  margin: 0 auto;
  max-width: 1900px;
  padding: 6px;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile {
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
  cursor: pointer;
  display: block;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.tile::after {
  border-bottom: 20px solid transparent;
  border-left: 31px solid rgba(255, 255, 255, 0.9);
  border-top: 20px solid transparent;
  content: "";
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-38%, -50%);
  transition: opacity 150ms ease;
  z-index: 2;
}

.tile:hover::after,
.tile:focus-visible::after {
  opacity: 0.9;
}

.tile img,
.tile video {
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.tile:hover img,
.tile:hover video,
.tile:focus-visible img,
.tile:focus-visible video {
  filter: brightness(0.78);
  transform: scale(1.025);
}

.logo-tile {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 34px;
}

.logo-tile.blue {
  background: #eaf7fc;
}

.logo-tile.pink {
  background: #ffecef;
}

.logo-tile img {
  height: auto;
  object-fit: contain;
  width: 90%;
}

@keyframes coverCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--cover-gap) / 2)));
  }
}

.pagination {
  align-items: center;
  background: #000;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  padding: 22px 10px 12px;
}

.pagination a {
  color: #8dd7ff;
  font-size: 16px;
  padding: 10px 8px;
}

.pagination a:hover {
  color: #fff;
}

.footer-links {
  background: #000;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px 20px;
  justify-content: center;
  padding: 4px 20px 22px;
}

.legal-footer {
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  padding: 20px;
  text-align: center;
}

.legal-footer p {
  margin: 0 0 4px;
}

.legal-footer a {
  font-weight: 700;
}

.badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 15px;
}

.badges img {
  height: 25px;
  object-fit: contain;
  width: auto;
}

.badges a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  height: 25px;
  justify-content: center;
  min-width: 52px;
  padding: 0 7px;
}

.age-overlay {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  flex-direction: column;
  inset: 0;
  overflow: auto;
  position: fixed;
  z-index: 2147483646;
}

.age-card {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  margin: 0 auto;
  max-width: 560px;
  padding: 0 30px;
  width: 100%;
}

.gate-logo {
  padding: 20px 0;
}

.gate-logo img {
  background: #fff;
  border-radius: 2px;
  margin: 0 auto;
  max-width: 250px;
  padding: 12px;
}

.gate-panel {
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid #333;
  padding: 30px;
}

.gate-panel h2,
.terms-title h2 {
  color: #d6d6d6;
  font-size: 18px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.gate-panel h2 {
  margin-bottom: 30px;
  padding: 0 30px;
}

.gate-panel p {
  color: #c9c9c9;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

.gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 18px 0 22px;
}

.gate-button {
  border: 0;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  min-width: 142px;
  padding: 13px 18px;
  text-transform: uppercase;
}

.exit-button {
  background: #2a2a2a;
}

.enter-button {
  background: #ff444e;
}

.terms-title {
  padding: 2px 0 12px;
}

.terms-scroll {
  color: #c9c9c9;
  font-size: 13px;
  line-height: 1.42;
  margin-bottom: 20px;
  max-height: 215px;
  overflow: auto;
  padding-right: 10px;
}

.terms-scroll p {
  margin: 0 0 8px;
}

.terms-scroll ul {
  margin: 0;
  padding-left: 20px;
}

.overlay-footer {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .video-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    height: 100px;
    padding: 0;
  }

  .brand {
    height: 54px;
    justify-content: center;
    padding: 8px 10px 4px;
  }

  .brand img {
    height: 36px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    align-items: stretch;
    border-top: 1px solid #ccc;
    display: grid;
    flex: 1;
    font-size: 18px;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    line-height: 1;
  }

  .header-actions a {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .join-link {
    border-radius: 0;
    padding: 0 10px;
  }

  .page-shell {
    padding-top: 100px;
  }

  .hero-card {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .hero-card::after {
    width: 72vw;
  }

  .hero-copy {
    left: 18px;
    max-width: min(74vw, 360px);
  }

  .hero-copy small {
    margin-top: 9px;
  }

  .hero-copy em {
    margin-top: 14px;
    min-height: 40px;
    padding: 0 18px;
  }

  .cover-strip {
    --cover-gap: 8px;
    padding: 5px 0 0;
  }

  .cover-track {
    animation-duration: 32s;
  }

  .cover-card {
    flex-basis: 45vw;
    max-width: 215px;
  }

  .video-grid,
  .gallery-grid {
    gap: 5px;
    grid-template-columns: 1fr;
    padding: 5px;
  }

  .age-card {
    padding: 0 16px;
  }

  .gate-panel {
    padding: 22px 18px;
  }

  .gate-panel h2 {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0;
  }

  .gate-actions {
    flex-direction: column;
  }

  .gate-button {
    width: 100%;
  }
}
