.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

#simpleModal .modal-content {
  color: rgb(17, 17, 17);
  font-family: "Fredoka", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  max-width: 460px;
  width: 92%;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.modal-subtext {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.modal-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  display: block;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 500;
}

.modal-option:hover {
  border-color: #000;
  transform: translateY(-2px);
}

.modal-option.highlight {
  border-color: #000;
  background: #f9f9f9;
  transform: scale(1.02);
}

.option-title {
  font-weight: 600;
  font-size: 16px;
}

.option-desc {
  font-size: 16px;
  color: #666;
  margin-top: 4px;
}

.modal-footnote {
  margin-top: 16px;
  font-size: 14px;
  color: #888;
}

.ti-widget.ti-goog .ti-rating-text strong.ti-rating, .ti-widget.ti-goog .ti-rating-text span, .ti-widget.ti-goog .ti-footer strong:not(.ti-rating-large) {
    color: #111 !important;
}