/* Hide Scrollbar */
html,
body {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

.subscribe-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.subscribe-popup.is-open { display: flex; }
.subscribe-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(6px);
}
.subscribe-popup-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #1A263B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem 1.6rem 1.6rem;
  text-align: center;
  color: #F8FAFC;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
}
.subscribe-popup-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
}
.subscribe-popup-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.subscribe-popup-body {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #CBD5E1;
}
.subscribe-popup-btn {
  margin-top: 1.4rem;
  border: 0;
  border-radius: 8px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: #059669;
  color: #fff;
}
.subscribe-popup-btn:hover { background: #047857; }