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

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(135deg, #0a0035 0%, #150845 50%, #1a0a50 100%);
  border: 2px solid rgba(135, 70, 235, 0.4);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.age-modal-logo img {
  max-height: 52px;
  width: auto;
}

.age-modal-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: white;
  margin: 0;
  line-height: normal;
}

.age-modal-subtitle {
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: normal;
}

.age-modal-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0 auto;
}

.age-modal-checkbox input {
  display: none;
}

.age-checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(135, 70, 235, 0.6);
  border-radius: 6px;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  transition: 0.2s;
}

.age-modal-checkbox input:checked + .age-checkmark {
  background: #8746eb;
  border-color: #8746eb;
}

.age-modal-checkbox input:checked + .age-checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.age-checkbox-text {
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
}

.age-modal-disclaimer {
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

.age-modal-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .age-modal-content {
    padding: 32px 24px;
  }

  .age-modal-title {
    font-size: 24px;
  }
}
