#sasste-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 16px;
  font-family: Metropolis, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#sasste-popup-overlay.sasste-popup-open {
  display: flex;
}

#sasste-popup-card {
  position: relative;
  background: var(--sasste-popup-bg, #e9f5ff);
  color: #111111;
  max-width: 420px;
  width: 100%;
  border-radius: 14px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#sasste-popup-overlay.sasste-popup-open #sasste-popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

#sasste-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 6px;
}

#sasste-popup-close:hover {
  color: #111;
}

#sasste-popup-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0063e3;
  font-weight: 600;
  margin: 0 0 8px;
}

#sasste-popup-headline {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}

#sasste-popup-text {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin: 0 0 20px;
}

#sasste-popup-code-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #efefef;
  border: 1px dashed #0063e3;
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 0 20px;
}

#sasste-popup-code {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
}

#sasste-popup-copy {
  border: none;
  background: #0063e3;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

#sasste-popup-copy:hover {
  background: #0052bd;
}

#sasste-popup-cta {
  display: inline-block;
  background: var(--sasste-popup-button, #32374f);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

#sasste-popup-cta:hover {
  background: #262a3e;
}

#sasste-popup-valid {
  margin: 14px 0 0;
  font-size: 11px;
  color: #888;
}
