.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.age-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.age-modal-content {
  position: relative;
  background: var(--color-form-bg);
  border-radius: 24px;
  max-width: 400px;
  width: 90%;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.age-modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
}

.age-modal-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 20px;
}

.age-modal-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.age-modal-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-cyan);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.age-modal-checkbox input[type="checkbox"]:checked {
  background: var(--color-cyan);
}

.age-modal-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid var(--color-primary-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.age-modal-checkbox span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
}

.age-modal-disclaimer {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 18px;
}

.age-modal-confirm {
  width: 100%;
  padding: 14px 32px;
  font-size: 18px;
}

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