.age-gate-pending body > :not(.age-gate) {
  visibility: hidden;
}

html.age-gate-open,
html.age-gate-open body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(20px, 5vw, 56px);
  border: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(128, 27, 51, .36), transparent 42%),
    #080808;
  color: #f5f5f5;
  font-family: Inter, Arial, sans-serif;
  text-align: center;
}

.age-gate::backdrop {
  background: #080808;
}

.age-gate__card {
  width: min(100%, 520px);
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid rgba(197, 160, 89, .32);
  border-radius: 24px;
  background: rgba(20, 20, 20, .96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.age-gate__logo {
  display: block;
  width: auto;
  height: 36px;
  margin: 0 auto 32px;
}

.age-gate__eyebrow {
  margin: 0 0 10px;
  color: #c5a059;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.age-gate__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.age-gate__copy {
  max-width: 42ch;
  margin: 20px auto 28px;
  color: #aaa;
  font-size: .95rem;
  line-height: 1.6;
}

.age-gate__actions {
  display: grid;
  gap: 10px;
}

.age-gate__button {
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.age-gate__button--enter {
  background: #801b33;
  color: #fff;
  box-shadow: 0 10px 24px rgba(128, 27, 51, .3);
}

.age-gate__button--leave {
  border-color: rgba(197, 160, 89, .4);
  background: transparent;
  color: #c5a059;
}

.age-gate__button:focus-visible {
  outline: 3px solid #f5f5f5;
  outline-offset: 3px;
}

.age-gate__note {
  margin: 20px 0 0;
  color: #777;
  font-size: .72rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .age-gate {
    padding: 14px;
  }

  .age-gate__card {
    padding: 28px 20px;
  }
}
