/* ===============================
   VIDEO
=============================== */

.dvm-video-wrapper {
  position: relative;
}

.dvm-video-wrapper iframe {
  width: 100%;
  height: 420px;
  border-radius: 12px;
}

.dvm-video-wrapper:not(.unlocked) iframe {
  filter: blur(6px);
  pointer-events: none;
}

.dvm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  border-radius: 12px;
}

/* ===============================
   SPINNER
=============================== */

.dvm-spinner {
  width: 36px;
  height: 36px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===============================
   SUCCESS CARD
=============================== */

.dvm-success-card {
  background: linear-gradient(135deg, #00000, #ffffff);
  border-radius: 16px;
  padding: 26px;
  color: #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.dvm-success-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.dvm-success-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #f58420;
}

/* ICON JAM (SVG) */
.dvm-icon-clock {
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f58420'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M12 6v6l4 2m6-2a10 10 0 11-20 0 10 10 0 0120 0z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.dvm-success-text {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 18px;
  line-height: 1.6;
}

.dvm-countdown-box {
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.dvm-countdown-box .label {
  font-size: 12px;
  color: #94a3b8;
  display: block;
}

.dvm-countdown-box .time {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f8fafc;
}
