.ad-label {
	color: #a3a3a3;
	font-family: arial;
	padding: 3px 10px;
	white-space: nowrap;
	font-size: 10px;
	}
    .animate-text {
      display: inline-block;
      animation: bounce 2s infinite ease-in-out;
    }
	
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-3px);
      }
    }
  .download-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.05);
}

/* remove hover motion */
.download-card:hover {
  box-shadow: 0 6px 20px rgba(15,23,42,0.05);
  transform: none;
}

/* premium border */
.download-card.premium {
  border-color: #bfdbfe;
}

/* Card Header */
.card-header-clean {
  margin-bottom: 20px;
}

.card-header-clean h4 {
  font-weight: 700;
  margin-bottom: 4px;
  color: #1e293b;
}

.card-header-clean p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
}

/* Icon */
.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}

.premium-icon {
  background: linear-gradient(135deg, #1d66ff 0%, #0d4fd9 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(29, 102, 255, 0.2);
}

.free-icon {
  background: #f1f5f9;
  color: #64748b;
}

/* Recommended Badge */
.recommended-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #1e293b;
  padding: 4px 15px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 12px;
  letter-spacing: 0.5px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(250, 204, 21, 0.3);
}

/* Time Boxes */
.time-box {
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  margin-bottom: 22px;
  min-height: 130px;
}

.time-box .label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 500;
}

.time-box .time {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.time-box .sub {
  font-size: 13px;
  margin-top: 6px;
  color: #64748b;
}

.time-box.success {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #86efac;
  color: #16a34a;
}

.time-box.success .sub {
  color: #dc2626;
}

.time-box.danger {
  background: #fef2f2;
  border: 2px solid #fca5a5;
  color: #dc2626;
}

.time-box.danger .sub {
  color: #64748b;
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  font-size: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
}

.feature-list i {
  font-size: 14px;
  color: #16a34a;
  flex-shrink: 0;
}

.feature-list.negative i {
  color: #dc2626;
}

/* Buttons */
.btn-primary {
  background: #1d66ff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(29, 102, 255, 0.25);
}

.btn-primary:hover {
  background: #1d66ff;
  box-shadow: 0 4px 14px rgba(29, 102, 255, 0.25);
  transform: none;
}

.btn-outline-secondary {
  border-radius: 10px;
  font-weight: 700;
  padding: 14px;
  border: 2px solid #e2e8f0;
  color: #64748b;
  background: white;
}

.btn-outline-secondary:hover {
  border-color: #e2e8f0;
  background: white;
  color: #64748b;
}

/* Responsive */
@media (max-width: 991px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 24px;
  }
}

.video-preview-wrapper {
  background: transparent;
}

.video-preview-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.video-preview-scroll::-webkit-scrollbar {
  height: 6px;
}

.video-preview-scroll::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 6px;
}

.video-preview-scroll img {
  flex: 0 0 auto;
  width: 220px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

/* Desktop: no horizontal scroll */
@media (min-width: 768px) {
  .video-preview-scroll {
    overflow-x: visible;
  }

  .video-preview-scroll img {
    width: 100%;
    max-width: 100%;
    height: 160px;
  }
}

/* ========== FILE INFO CARD ========== */
.file-info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(15,23,42,0.05);
}

.file-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.file-icon {
  font-size: 28px;
  color: #2563eb;
  flex-shrink: 0;
}

.file-meta {
  min-width: 0;
}

.file-name {
  font-weight: 700;
  color: #1e293b;
  font-size: 15px;
  word-break: break-word;
}

.file-size {
  font-size: 13px;
  color: #64748b;
}

/* ========== WATCH ONLINE BUTTON ========== */
.watch-online-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.watch-online-btn i {
  font-size: 12px;
}

/* Mobile stacking */
@media (max-width: 575px) {
  .file-info-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .watch-online-btn {
    align-self: stretch;
    justify-content: center;
  }
}

.upgrade-cta h2 {
  color: #1e293b;
  font-size: 1.75rem;
}
.upgrade-cta .lead {
  font-size: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
}
.premium-benefits {
  gap: 1rem 2rem; /* Better vertical/horizontal spacing */
}
.premium-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #334155;
  font-size: 14px;
}
.premium-benefits i {
  color: #16a34a;
  font-size: 15px;
  flex-shrink: 0;
}
.upgrade-cta .btn {
  border-radius: 12px;
  font-weight: 700;
  background: #1d66ff;
  border: none;
  box-shadow: 0 6px 20px rgba(29, 102, 255, 0.3);
  transition: all 0.3s ease;
}
.upgrade-cta .btn:hover {
  background: #0d4fd9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 102, 255, 0.4);
}
/* Update the countdown state styling */
.state-2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 8px;
}

.dl-wait-loader {
  position: relative;
  width: 52px;
  height: 52px;
  margin: 0 auto;
}

/* Ring */
.dl-wait-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid #e5e7eb;
  border-top-color: #2563eb;
  animation: dl-spin 1s linear infinite;
}

/* Center icon */
.dl-wait-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #2563eb;
}

/* Spin animation */
@keyframes dl-spin {
  to {
    transform: rotate(360deg);
  }
}

.dl-wait-title {
  color: #1e293b;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.dl-wait-subtitle {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 0;
}

.dl-wait-timer {
  max-width: 100%;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 22px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dl-wait-timer-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}

.dl-wait-timer-value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: #1d66ff;
  margin-bottom: 0;
}

.dl-wait-upsell {
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: auto;
}

.dl-wait-upsell-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d66ff;
  flex: 0 0 auto;
  font-size: 16px;
}

.dl-wait-upsell-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.dl-wait-upsell-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 8px;
}

.dl-wait-upsell-link {
  font-size: 13px;
  font-weight: 700;
  color: #1d66ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dl-wait-upsell-link:hover {
  color: #0d4fd9;
  text-decoration: none;
}

/* Mobile spacing polish */
@media (max-width: 575px) {
  .dl-wait-timer-value {
    font-size: 32px;
  }
  .dl-wait-upsell {
    padding: 14px;
  }
}

.captcha-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.05);
  padding: 36px;
}
.captcha-header { text-align: center; margin-bottom: 28px; }
.captcha-icon {
  width: 52px; height: 52px; border-radius: 14px; background: #eff6ff; color: #2563eb;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px;
}
.captcha-header h4 { font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.captcha-header p { font-size: 14px; color: #64748b; margin: 0; }
.captcha-box {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 24px; text-align: center; margin-bottom: 24px;
}
#downloadbtn.btn-primary {
  border-radius: 10px; font-weight: 700; padding: 14px; background: #1d66ff; border: none;
  box-shadow: 0 4px 14px rgba(29, 102, 255, 0.25);
}
.captcha-upsell {
  display: flex; gap: 12px; background: #f0f9ff; border: 1px solid #e0f2fe;
  border-radius: 12px; padding: 16px; margin-top: 24px; text-align: left;
}
.captcha-upsell-icon {
  width: 36px; height: 36px; border-radius: 50%; background: #eff6ff; color: #1d66ff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.captcha-upsell-title { font-weight: 700; font-size: 14px; color: #1e293b; }
.captcha-upsell-link { font-weight: 700; color: #1d66ff; text-decoration: none; font-size: 13px; }
.captcha-note { font-size: 12px; color: #94a3b8; text-align: center; margin-top: 18px; }

.file-info-box { background: #ffffff; border: 1px solid #e2e8f0; padding: 15px; border-radius: 12px; }