#fhsp-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
}
.fhsp-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}
.fhsp-content {
  position: relative;
  background: #fff;
  padding: 32px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 2;
  max-width: 420px;
  width: calc(100% - 32px);
  text-align: center;
  animation: fhspFadeIn 0.6s ease;
}
.fhsp-content h2 { margin: 0 0 10px; font-size: 22px; }
.fhsp-content p { color: #444; font-size: 15px; margin-bottom: 20px; }
#fhsp-form input {
  width: 100%; padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 12px;
  outline: none;
}
#fhsp-form input:focus { border-color: #000; }
#fhsp-form button {
  background: #000; color: #fff;
  border: none; padding: 12px 18px;
  border-radius: 10px; cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
#fhsp-form button:hover { opacity: 0.9; }
.fhsp-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none;
  font-size: 22px; cursor: pointer; color: #999;
}
@keyframes fhspFadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
@media (max-width: 480px) {
  .fhsp-content { margin: 0 16px; padding: 24px; }
}