.rb-drop .rb-drop__card {
  position: relative;
  max-width: 34rem;
  margin: 0 auto;
  padding: 1.5rem 1.35rem 1.45rem;
  border-radius: 20px;
  background: var(--rb-card);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.rb-drop .rb-drop__electric {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(90deg, var(--rb-accent), #f472b6, #22d3ee, var(--rb-accent));
  background-size: 300% 100%;
  animation: rb-drop-border 4s linear infinite;
  z-index: 0;
}
@keyframes rb-drop-border {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.rb-drop .rb-drop__card::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: linear-gradient(165deg, var(--rb-card), color-mix(in srgb, var(--rb-card) 85%, #000));
  z-index: 0;
}
.rb-drop .rb-drop__badge,
.rb-drop .rb-drop__title,
.rb-drop .rb-drop__timer,
.rb-drop .rb-drop__scarcity,
.rb-drop .rb-drop__bar,
.rb-drop .rb-drop__bar-label,
.rb-drop .rb-drop__card .rb-btn {
  position: relative;
  z-index: 1;
}
.rb-drop .rb-drop__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #fecaca;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(248, 113, 113, 0.8);
}
.rb-drop .rb-drop__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--rb-text);
}
.rb-drop .rb-drop__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--rb-accent);
}
.rb-drop .rb-drop__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 12px #ef4444;
  animation: rb-drop-pulse 1s ease-in-out infinite;
}
@keyframes rb-drop-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}
.rb-drop .rb-drop__scarcity {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rb-muted);
}
.rb-drop .rb-drop__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  margin: 0 auto 0.35rem;
  max-width: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.rb-drop .rb-drop__fill {
  height: 100%;
  max-width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444, var(--rb-accent));
  box-shadow: 0 0 14px color-mix(in srgb, var(--rb-accent) 50%, #ef4444);
  transition: width 0.6s ease-out;
}
.rb-drop .rb-drop__bar-label {
  margin: 0 0 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rb-muted);
}
