/* Date of birth gate. The HTML starts locked before scripts are executed. */
.age-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2rem 1.25rem;
  background: #070b0e;
  isolation: isolate;
  color: #e9e5dc;
  color-scheme: dark;
}
.age-gate__backdrop {
  position: fixed;
  z-index: -2;
  inset: -1.5rem;
  background: linear-gradient(110deg, #030608ac, #06090c83 50%, #030608c9), url('../images/hero.webp') center / cover no-repeat;
  filter: blur(10px);
  pointer-events: none;
}
.age-gate::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 10%, #02050875 90%);
  content: '';
  pointer-events: none;
}
.age-gate__panel {
  position: relative;
  width: min(100%, 39rem);
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 5vw, 3.25rem);
  margin-block: auto;
  border: 1px solid #ced5d438;
  border-top-color: #e27b535c;
  background: linear-gradient(140deg, #bc482910, transparent 55%), #070b0ecc;
  box-shadow: 0 2rem 7rem #0008;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}
.age-gate__logo {
  display: block;
  width: min(15.6rem, 85%);
  height: 5.75rem;
  object-fit: contain;
  margin: 0 auto 1.1rem;
}
.age-gate__rule { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.2rem; }
.age-gate__rule span { width: 3.1rem; height: 1px; background: #ba725d66; }
.age-gate__rule b { color: #ed926e; font: 400 .8rem/1 Arial, sans-serif; letter-spacing: .08em; }
.age-gate__eyebrow { margin: 0 0 .8rem; color: #ee9874; font-size: .7rem; letter-spacing: .19em; text-transform: uppercase; }
.age-gate h1 { margin: 0 0 1rem; font-size: clamp(1.85rem, 4vw, 2.6rem); font-weight: 300; line-height: 1.13; text-wrap: balance; hyphens: none; }
.age-gate__copy { margin: 0 auto 1.7rem; max-width: 31rem; color: #c1c2bd; font-size: 1rem; line-height: 1.6; }
.age-gate__fields { display: grid; grid-template-columns: .8fr 1.6fr 1fr; gap: .75rem; margin-bottom: 1.15rem; }
.age-gate__fields label { display: grid; gap: .55rem; min-width: 0; text-align: left; }
.age-gate__fields label > span { color: #c4c6c3; font-size: .83rem; letter-spacing: .035em; }
.age-gate__fields input, .age-gate__fields select {
  width: 100%; min-width: 0; height: 3.3rem; border: 1px solid #ced5d447; border-radius: 0;
  padding: .6rem .65rem; background: #10171cc9; color: #f4f0e7; font: 400 1rem/1.3 var(--font-site, serif);
  box-sizing: border-box;
}
.age-gate__fields input::placeholder { color: #a1a7ab; opacity: .8; }
.age-gate__fields select { cursor: pointer; }
.age-gate__fields option { background: #10171c; color: #f4f0e7; }
.age-gate__fields [aria-invalid='true'] { border-color: #f49a7f; }
.age-gate__button {
  display: block; width: 100%; min-height: 3.4rem; padding: .85rem 1.2rem;
  border: 1px solid #ced5d44d; background: #ffffff06; color: #e9e5dc;
  font: inherit; font-size: 1rem; letter-spacing: .07em; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease;
}
.age-gate__button--confirm { border-color: #bf4e31; background: #ae3925; color: #fff8f0; }
.age-gate__button:hover { border-color: #ee9874; background: #ffffff10; }
.age-gate__button--confirm:hover { background: #c3472d; }
.age-gate :is(input, select, button):focus-visible { outline: 2px solid #f2a27f; outline-offset: 3px; }
.age-gate h1:focus { outline: none; }
.age-gate__privacy { margin: 1rem auto 0; max-width: 27rem; color: #a7adae; font-size: .8rem; line-height: 1.55; }
.age-gate__error { margin: 0 0 1rem; padding: .7rem; border-left: 2px solid #e78e72; background: #ba3d2020; color: #ffc9b5; font-size: .9rem; text-align: left; line-height: 1.5; }
.age-gate__languages { display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem; margin-top: 1.45rem; padding-top: 1rem; border-top: 1px solid #ced5d41c; }
.age-gate__languages button { min-width: 2.75rem; min-height: 2.75rem; padding: .45rem; border: 1px solid transparent; background: transparent; color: #acb3b5; font: 400 .72rem/1 Arial, sans-serif; letter-spacing: .08em; cursor: pointer; }
.age-gate__languages button:hover, .age-gate__languages button.is-active { color: #ffc4a5; border-color: #ee987461; background: #ee98740c; }
.age-gate__noscript { margin-top: 1.4rem; color: #d8c2b5; font-size: .9rem; line-height: 1.5; }
.age-gate__noscript p + p { margin-top: .8rem; }
.age-gate[hidden], .age-gate [hidden] { display: none !important; }
@media (max-width: 34rem) {
  .age-gate { padding: 1rem .75rem; }
  .age-gate__logo { height: 4.8rem; margin-bottom: .8rem; }
  .age-gate__fields { gap: .5rem; grid-template-columns: .75fr 1.4fr 1fr; }
  .age-gate__copy { font-size: .95rem; margin-bottom: 1.35rem; }
  .age-gate__fields input, .age-gate__fields select { padding-inline: .45rem; }
  .age-gate__languages { gap: 0; }
  .age-gate__languages button { min-width: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) { .age-gate * { transition: none !important; } }
@media print { .age-gate-open #site-content { display: none !important; } }
