.ghsnp-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: ghsnpFadeIn .18s ease both;
}

.ghsnp-overlay[hidden] {
  display: none !important;
}

.ghsnp-card {
  width: min(620px, 100%);
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  text-align: center;
  transform: translateY(8px) scale(.98);
  animation: ghsnpCardIn .22s ease .03s both;
}

.ghsnp-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(6, 182, 212, .14));
  color: #2563EB;
}

.ghsnp-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.ghsnp-card h2 {
  margin: 0 0 14px;
  color: #0F172A;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.ghsnp-content {
  color: #64748B;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.ghsnp-content p {
  margin: 0 0 10px;
}

.ghsnp-highlight {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #EF4444;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
}

.ghsnp-ok {
  min-width: 150px;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.ghsnp-ok:hover,
.ghsnp-ok:focus {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.26);
}

.ghsnp-ok:focus {
  outline: 3px solid rgba(37, 99, 235, .22);
  outline-offset: 3px;
}

@keyframes ghsnpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ghsnpCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  .ghsnp-overlay {
    padding: 14px;
  }

  .ghsnp-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .ghsnp-content {
    font-size: 15px;
  }

  .ghsnp-highlight {
    font-size: 14px;
  }

  .ghsnp-ok {
    width: 100%;
  }
}
