.tlc-pop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,4,12,.75);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.tlc-pop-overlay.tlc-pop-show { opacity: 1; }
.tlc-pop-overlay[hidden] { display: none; }

.tlc-pop-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #1a1f4d 0%, #0a0c22 55%, #050612 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 40px 28px 32px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  transform: scale(.94) translateY(8px);
  transition: transform .25s ease;
}
.tlc-pop-overlay.tlc-pop-show .tlc-pop-card { transform: scale(1) translateY(0); }

.tlc-pop-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1.5px 1.5px at 20px 30px, #fff, transparent),
                     radial-gradient(1px 1px at 90px 80px, #fff, transparent),
                     radial-gradient(1.5px 1.5px at 150px 120px, #fff, transparent),
                     radial-gradient(1px 1px at 60px 160px, #fff, transparent),
                     radial-gradient(2px 2px at 200px 50px, #ffb347, transparent);
  background-size: 220px 200px;
  opacity: .6;
  z-index: 0;
}

.tlc-pop-content { position: relative; z-index: 1; }

.tlc-pop-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  background: none;
  border: none;
  color: #9296c4;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.tlc-pop-close:hover { color: #f1f3ff; }

.tlc-pop-astronaut {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  display: block;
  animation: tlc-pop-float 4s ease-in-out infinite;
}
@keyframes tlc-pop-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}

.tlc-pop-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #97c459;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.tlc-pop-eyebrow::before { content: "\25CF  "; color: #97c459; }

.tlc-pop-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #f1f3ff;
  margin: 0 0 10px;
}

.tlc-pop-sub {
  font-size: 14px;
  color: #9296c4;
  margin: 0 0 24px;
  line-height: 1.5;
}

.tlc-pop-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,179,71,.5);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 20px;
}
.tlc-pop-coupon-label {
  font-size: 13px;
  color: #f1f3ff;
  text-align: left;
}
.tlc-pop-coupon-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: #ffb347;
  letter-spacing: 1px;
}

.tlc-pop-btn {
  display: block;
  background: #ffb347;
  color: #1a1204;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.tlc-pop-btn:hover { background: #ffc670; transform: translateY(-1px); }

.tlc-pop-note {
  font-size: 11px;
  color: #6b6f99;
  margin: 14px 0 0;
}

@media (max-width: 420px) {
  .tlc-pop-card { padding: 32px 20px 26px; }
  .tlc-pop-title { font-size: 22px; }
}
