.live-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #dcfce7, #d1fae5);
  border: 1px solid rgba(76, 175, 139, 0.3);
  color: #166534;
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
  box-shadow: 0 2px 12px rgba(76, 175, 139, 0.15);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.live-count-pulse {
  animation: countGrow 0.4s ease;
}

@keyframes countGrow {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); color: #2E7D5B; }
  100% { transform: scale(1); }
}

.step-badge {
  display: inline-block;
  font-size: clamp(11px, 2.8vw, 12px);
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.step1-head {
  font-size: clamp(20px, 5.2vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 18px;
  max-width: 420px;
}

.head-highlight {
  color: var(--color-accent);
}

.head-highlight-red {
  color: var(--color-red);
}

.step1-subhead {
  font-size: clamp(14px, 3.8vw, 17px);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 420px;
}

.social-proof {
  margin-bottom: 8px;
}

.social-number {
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 2px;
}

.social-text {
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 500;
  color: var(--color-text-secondary);
}

.social-sub {
  font-size: clamp(12px, 3vw, 13px);
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 340px;
}

.red-alert {
  width: 100%;
  max-width: 420px;
  background: var(--color-red-bg);
  border: 1px solid var(--color-red-border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  margin-bottom: 28px;
  text-align: left;
}

.red-alert-title {
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 700;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.red-alert-desc {
  font-size: clamp(12px, 3vw, 13px);
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.slider-wrapper {
  width: 100%;
  max-width: 340px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 64px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  box-shadow: 0 4px 20px rgba(76, 175, 139, 0.35);
  animation: sliderPulse 2s ease-in-out infinite;
}

@keyframes sliderPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(76, 175, 139, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(76, 175, 139, 0.5); }
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #3D9A7A;
  border-radius: var(--radius-lg);
  transition: none;
}

.slider-fill.completed {
  width: 100% !important;
  transition: width 0.3s ease;
}

.slider-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 700;
  color: var(--color-white);
  pointer-events: none;
  z-index: 2;
  letter-spacing: 0.3px;
}

.slider-text span {
  transition: opacity 0.2s ease;
}

.slider-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 3;
  transition: transform 0.1s ease;
  touch-action: none;
}

.slider-thumb.dragging {
  transition: none;
}

.slider-thumb svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.slider-hint {
  text-align: center;
  margin-top: 12px;
  font-size: clamp(11px, 2.8vw, 12px);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: hintBounce 1.5s ease-in-out infinite;
}

.slider-hint svg {
  width: 14px;
  height: 14px;
}

@keyframes hintBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.slider-check {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

.slider-check svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.slider-wrapper.completed .slider-text {
  color: transparent;
}

.slider-wrapper.completed .slider-check {
  opacity: 1;
  animation: scaleIn 0.3s ease;
}

.vsl-section {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(32px, 8vh, 64px);
  padding-bottom: clamp(32px, 8vh, 64px);
}

.vsl-badge {
  display: inline-block;
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vsl-title {
  font-size: clamp(20px, 5.2vw, 26px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 16px;
  text-align: center;
  max-width: 420px;
}

.vsl-desc {
  font-size: clamp(13px, 3.2vw, 15px);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  text-align: center;
  max-width: 400px;
}

.vsl-video-wrapper {
  width: 100%;
  max-width: 400px;
  position: relative;
  padding-bottom: 125%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.1);
}

.vsl-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Custom play overlay */
.vsl-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  z-index: 5;
  transition: opacity 0.4s ease;
}

.vsl-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.vsl-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.vsl-play-btn svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
  margin-left: 3px;
}

.vsl-video-wrapper:hover .vsl-play-btn {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.3);
}

/* Custom controls bar */
.vsl-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vsl-video-wrapper:hover .vsl-controls,
.vsl-controls.show {
  opacity: 1;
  pointer-events: auto;
}

.vsl-ctrl-play {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vsl-ctrl-play svg {
  width: 22px;
  height: 22px;
  color: var(--color-white);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.vsl-icon-pause {
  display: none;
}

.vsl-controls.playing .vsl-icon-play {
  display: none;
}

.vsl-controls.playing .vsl-icon-pause {
  display: block;
}

.vsl-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
  pointer-events: none;
}

.vsl-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.2s linear;
}

.vsl-click-catcher {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  cursor: pointer;
  pointer-events: none;
}

/* Locked CTA button */
.vsl-cta-button.vsl-locked {
  background: var(--color-border);
  color: var(--color-text-light);
  box-shadow: none;
  cursor: not-allowed;
}

.vsl-cta-button.vsl-locked:hover {
  background: var(--color-border);
  transform: none;
  box-shadow: none;
}

.vsl-cta-button.vsl-locked .vsl-lock-icon {
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

/* Unlocked animation */
@keyframes unlockPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.vsl-cta-button.vsl-unlocked {
  animation: unlockPulse 0.5s ease;
}

.vsl-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vsl-cta-text {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--color-text-light);
  text-align: center;
  max-width: 300px;
  line-height: 1.5;
}

.vsl-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: clamp(15px, 3.8vw, 17px);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  padding: 18px 48px;
  cursor: pointer;
  box-shadow:
    0 4px 14px rgba(76, 175, 139, 0.25),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.vsl-cta-button:hover {
  background: var(--color-accent-hover);
  box-shadow:
    0 6px 20px rgba(76, 175, 139, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.vsl-cta-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 2px 8px rgba(76, 175, 139, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.06);
}

.vsl-cta-button .cta-arrow {
  display: inline-block;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

/* VSL entrance animations */
.vsl-anim {
  opacity: 0;
  transform: translateY(14px);
}

.vsl-anim.vsl-visible {
  animation: vslFadeIn 0.6s ease forwards;
}

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

.vsl-delay-1 { animation-delay: 0.1s !important; }
.vsl-delay-2 { animation-delay: 0.3s !important; }
.vsl-delay-3 { animation-delay: 0.5s !important; }
.vsl-delay-4 { animation-delay: 0.7s !important; }
.vsl-delay-5 { animation-delay: 0.9s !important; }
