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

.age-verify.is-hidden {
  display: none;
}

.age-verify__card {
  background: #150d60;
  border: 1px solid #fce046;
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.age-verify__logo img {
  width: auto;
}

.age-verify__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  line-height: 1.3;
}

.age-verify__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
  margin-top: -8px;
}

.age-verify__checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.age-verify__checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.age-verify__checkbox-label {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.age-verify__error {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #ff6b6b;
  margin-top: -8px;
  width: 100%;
  text-align: center;
}

.age-verify__note {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 360px;
}

.age-verify__btn {
  width: 100%;
  padding: 16px;
  font-size: 20px;
  border-radius: 32px;
}

@media (max-width: 480px) {
  .age-verify__card {
    padding: 28px 24px;
    gap: 16px;
  }

  .age-verify__title {
    font-size: 18px;
  }

  .age-verify__checkbox-label {
    font-size: 14px;
  }
}
