/* Promo countdown card */
.rs-promo-wrap{
  margin: 22px 0 8px;
}
.rs-promo-card{
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(9,14,24,.64), rgba(7,11,18,.26));
  border: 1px solid rgba(120, 200, 255, .26);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 12px 48px rgba(0, 0, 0, .28),
    0 0 32px rgba(65, 188, 255, .18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  isolation: isolate;
}
.rs-promo-card::before,
.rs-promo-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  pointer-events:none;
}
.rs-promo-card::before{
  background:
    linear-gradient(90deg,
      rgba(120,220,255,.06) 0%,
      rgba(132,0,255,.12) 20%,
      rgba(255,255,255,.08) 35%,
      rgba(0,231,255,.14) 52%,
      rgba(255,255,255,.08) 70%,
      rgba(0,132,255,.12) 86%,
      rgba(120,220,255,.06) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.4px;
  animation: rsPromoBorderFlow 8s linear infinite;
}
.rs-promo-card::after{
  background:
    radial-gradient(circle at 8% 16%, rgba(87, 213, 255, .85) 0, rgba(87, 213, 255, 0) 18%),
    radial-gradient(circle at 92% 18%, rgba(184, 76, 255, .55) 0, rgba(184, 76, 255, 0) 16%),
    radial-gradient(circle at 88% 82%, rgba(0, 209, 255, .35) 0, rgba(0, 209, 255, 0) 22%);
  opacity: .95;
  z-index: -1;
}
.rs-promo-stack{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.rs-promo-stack::before,
.rs-promo-stack::after{
  content:"";
  position:absolute;
  top:8px;
  bottom:8px;
  width: 30px;
  opacity:.96;
  filter: drop-shadow(0 0 11px rgba(112, 233, 255, .8));
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(114,243,255,.98) 18%, rgba(255,255,255,.35) 34%, rgba(114,243,255,.98) 54%, rgba(255,255,255,0) 100%);
  clip-path: polygon(52% 0, 62% 12%, 42% 31%, 68% 46%, 38% 66%, 58% 83%, 41% 100%, 18% 78%, 36% 58%, 8% 42%, 30% 24%, 16% 0);
  animation: rsPromoLightning 1.9s infinite ease-in-out;
  pointer-events:none;
}
.rs-promo-stack::before{ left:-2px; }
.rs-promo-stack::after{ right:-2px; transform: scaleX(-1); animation-delay: .55s; }
.rs-promo-kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 auto;
  text-align:center;
  color:#bdf6ff;
  font-size:.95rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.rs-promo-kicker::before,
.rs-promo-kicker::after{
  content:"";
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,238,255,0), rgba(0,238,255,.95));
  box-shadow: 0 0 10px rgba(0,238,255,.7);
}
.rs-promo-title{
  margin:0;
  padding-right:18px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height:1.08;
  color:#fff;
  text-shadow: 0 0 18px rgba(96, 202, 255, .22);
}
.rs-promo-visual{
  position:relative;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(133, 208, 255, .18);
  box-shadow: inset 0 0 28px rgba(85, 166, 255, .08);
}

.rs-promo-visual{
  text-align:center;
}
.rs-promo-chip{
  margin-left:auto;
  margin-right:auto;
}
.rs-promo-codewrap{
  flex-wrap:wrap;
}
.rs-promo-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  border:1px solid rgba(120,234,255,.32);
  background: rgba(7, 16, 28, .68);
  color:#d8fbff;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0, 229, 255, .14);
}
.rs-promo-timer{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:10px;
  margin-bottom: 12px;
}
.rs-promo-unit{
  padding: 14px 10px;
  border-radius: 18px;
  text-align:center;
  background: linear-gradient(180deg, rgba(12,18,31,.88), rgba(7,11,18,.76));
  border: 1px solid rgba(123, 208, 255, .16);
  box-shadow: inset 0 0 18px rgba(64, 180, 255, .08), 0 0 18px rgba(0, 162, 255, .05);
}
.rs-promo-value{
  display:block;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height:1;
  font-weight: 900;
  color:#fff;
  text-shadow: 0 0 15px rgba(102, 233, 255, .22);
}
.rs-promo-label{
  display:block;
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(190, 232, 255, .72);
}
.rs-promo-codewrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border-radius: 18px;
  border:1px solid rgba(130,235,255,.24);
  background: rgba(6, 10, 17, .72);
}
.rs-promo-codeblock{ min-width:0; }
.rs-promo-codelabel{
  display:block;
  margin-bottom: 4px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(184,231,255,.76);
}
.rs-promo-code{
  display:block;
  overflow-wrap:anywhere;
  color:#fff;
  font-weight:900;
  font-size: clamp(1rem, 2vw, 1.12rem);
  letter-spacing: .07em;
}
.rs-promo-copybtn{
  flex: 0 0 auto;
  cursor:pointer;
  border:1px solid rgba(132,228,255,.26);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34,46,82,.92), rgba(13,19,33,.92));
  color:#effbff;
  font-weight:800;
  padding: 11px 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.rs-promo-copybtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(100, 231, 255, .16);
  border-color: rgba(132,228,255,.5);
}
.rs-promo-note{
  margin: 0;
  color: rgba(205, 239, 255, .88);
  font-size:.98rem;
  line-height:1.5;
}
.rs-promo-hidden{ display:none !important; }
@keyframes rsPromoBorderFlow {
  0% { filter: drop-shadow(0 0 12px rgba(99, 230, 255, .32)); }
  50% { filter: drop-shadow(0 0 22px rgba(99, 230, 255, .5)); }
  100% { filter: drop-shadow(0 0 12px rgba(99, 230, 255, .32)); }
}
@keyframes rsPromoLightning {
  0%,100% { opacity:.36; transform: translateY(0) scaleY(1); }
  9% { opacity:.98; }
  14% { opacity:.22; }
  17% { opacity:1; transform: translateY(-2px) scaleY(1.04); }
  33% { opacity:.42; }
  61% { opacity:.85; }
  69% { opacity:.26; }
  74% { opacity:1; transform: translateY(1px) scaleY(.98); }
}
@media (max-width: 560px){
  .rs-promo-timer{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rs-promo-codewrap{ flex-direction:column; align-items:stretch; }
  .rs-promo-codeblock{ width:100%; text-align:center; }
  .rs-promo-copybtn{ width:100%; }
  .rs-promo-title{ padding-right:0; text-align:center; }
}
