html.eavg-age-gate-active,
body.eavg-age-gate-active {
  overflow: hidden !important;
}

.eavg-age-gate[hidden] {
  display: none !important;
}

.eavg-age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 180ms ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.eavg-age-gate.is-visible {
  opacity: 1;
}

.eavg-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%),
    rgba(6, 10, 20, 0.88);
  backdrop-filter: blur(10px);
}

.eavg-age-gate__panel {
  position: relative;
  width: min(100%, 520px);
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  color: #172033;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  text-align: center;
  outline: none;
}

.eavg-age-gate__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a3412;
}

.eavg-age-gate__title {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  color: #101827;
}

.eavg-age-gate__description {
  margin: 0 auto 24px;
  max-width: 430px;
  font-size: 16px;
  line-height: 1.7;
  color: #465366;
}

.eavg-age-gate__description p {
  margin: 0 0 10px;
}

.eavg-age-gate__question {
  font-weight: 800;
  color: #182236;
}

.eavg-age-gate__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 18px;
}

.eavg-age-gate__button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.eavg-age-gate__button:hover,
.eavg-age-gate__button:focus {
  transform: translateY(-1px);
}

.eavg-age-gate__button--primary {
  background: #081225;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 18, 37, 0.24);
}

.eavg-age-gate__button--primary:hover,
.eavg-age-gate__button--primary:focus {
  background: #111f38;
}

.eavg-age-gate__button--secondary {
  background: #f1f5f9;
  color: #334155;
}

.eavg-age-gate__button--secondary:hover,
.eavg-age-gate__button--secondary:focus {
  background: #e2e8f0;
}

.eavg-age-gate__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

@media (min-width: 560px) {
  .eavg-age-gate__actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .eavg-age-gate {
    padding: 16px;
  }

  .eavg-age-gate__panel {
    padding: 26px 20px;
    border-radius: 22px;
  }
}
