@charset "UTF-8";

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

.age-verification-modal[hidden] {
  display: none !important;
}

.age-verification-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.8);
}

.age-verification-modal__panel {
  width: min(92vw, 440px);
  padding: 28px 24px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 180, 235, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 240, 252, 0.98) 100%);
  box-shadow:
    0 0 18px rgba(255, 95, 210, 0.24),
    0 14px 42px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.age-verification-modal__title {
  margin: 0 0 12px;
  color: #2a1538;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow:
    0 0 4px rgba(255, 145, 230, 0.42),
    0 0 10px rgba(255, 95, 210, 0.2);
}

.age-verification-modal__text {
  margin: 0;
  color: #4d3a58;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
  font-weight: 700;
}

.age-verification-modal__actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.age-verification-modal__btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 180, 235, 0.85);
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.age-verification-modal__btn--yes {
  color: #fff;
  background: linear-gradient(100deg, rgba(104, 46, 146, 0.96) 0%, rgba(218, 83, 167, 0.96) 100%);
  box-shadow:
    0 0 10px rgba(255, 110, 215, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.age-verification-modal__btn--no {
  color: #fff;
  background: linear-gradient(100deg, rgba(114, 44, 65, 0.96) 0%, rgba(214, 74, 106, 0.96) 100%);
  box-shadow:
    0 0 10px rgba(220, 90, 130, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.age-verification-modal__btn:hover,
.age-verification-modal__btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.age-verification-modal__btn--yes:hover,
.age-verification-modal__btn--yes:focus-visible {
  border-color: rgba(170, 255, 210, 0.95);
  box-shadow:
    0 0 12px rgba(120, 255, 170, 0.52),
    inset 0 0 0 1px rgba(220, 255, 235, 0.24);
}

.age-verification-modal__btn--no:hover,
.age-verification-modal__btn--no:focus-visible {
  border-color: rgba(255, 200, 215, 0.92);
}

@media (max-width: 767px) {
  .age-verification-modal__panel {
    width: min(92vw, 380px);
    padding: 24px 16px 18px;
  }

  .age-verification-modal__actions {
    flex-direction: column;
    gap: 8px;
  }

  .age-verification-modal__btn {
    width: 100%;
  }
}
