html { background: #000; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #FAFAFA;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Slow-drifting monochrome glow — gives an otherwise flat black/white page
   some ambient life without introducing any colour. */
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(600px 500px at 50% 0%, rgba(255,255,255,.08), transparent 70%);
  animation: glowDrift 12s ease-in-out infinite;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .8; }
  50% { transform: translate(3%, 2%) scale(1.08); opacity: 1; }
}

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin: 0 24px;
  padding: 36px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
  text-align: center;
  animation: riseIn .6s cubic-bezier(.2,.7,.2,1) both;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(250,250,250,.4);
  margin: 0 0 14px;
}

.product {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}

.price {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 4px;
}

.duration {
  font-size: 14px;
  color: rgba(250,250,250,.5);
  margin: 0 0 28px;
}

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(250,250,250,.55);
}

.spinner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  border-top-color: #FAFAFA;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Same mark shown mid-redirect on shalombet.lol's button, so it reads as
   one continuous, expected handoff rather than a jump to somewhere new. */
.status-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  object-fit: cover;
  flex: none;
  animation: statusPulse 1.3s ease-in-out infinite;
}
@keyframes statusPulse { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.error {
  color: rgba(250,250,250,.7);
  font-size: 13.5px;
  line-height: 1.5;
  display: none;
}
