.age-verify {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-verify.is-open {
  display: flex;
}

.age-verify__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 15, 0.85);
  backdrop-filter: blur(4px);
}

.age-verify__dialog {
  position: relative;
  width: min(440px, 100%);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-verify__logo {
  margin: 0 auto 12px;
  max-height: 46px;
  width: auto;
}

.age-verify__title {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  line-height: 1.1;
}

.age-verify__text,
.age-verify__footer-text {
  margin: 0 0 14px;
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}

.age-verify__confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
.age-verify__confirm input {
  flex-shrink: 0;
  accent-color: var(--c-blue);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.age-verify__footer-text {
  font-size: 12px;
}

.age-verify__accept {
  width: 100%;
  margin-bottom: 0;
}
.age-verify__accept:disabled {
  background: var(--c-blue);
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

body.is-age-open {
  overflow: hidden;
}
