/* ═══════════════════════════════════════
   AlarmO'Clock — Special Countdown Styles
   ═══════════════════════════════════════ */

/* ── NAV CLOCK ── */
.nav-clock { opacity: 1; transform: translateY(0); }

/* ── COUNTDOWN CARD — no background/border ── */
.scd-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.scd-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0;
}

/* ── UNITS ROW ── */
.scd-units {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.scd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 90px;
}

/* ── NUMBERS — white/light on gradient ── */
.scd-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
  text-shadow: 0 2px 20px rgba(100,60,180,0.3);
}

.scd-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.scd-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  padding-bottom: 32px;
  line-height: 1;
  align-self: flex-start;
  margin-top: 8px;
}

/* ── PROGRESS BAR ── */
.scd-progress-wrap {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scd-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
}

.scd-progress-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #a78bfa, #c084fc, #e879a0);
  transition: width 1s linear;
  min-width: 4px;
}

.scd-progress-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
}

/* ── TARGET DATE ── */
.scd-target-label {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ── FINISHED ── */
.scd-finished-emoji { font-size: 56px; margin-bottom: 16px; }
.scd-finished h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--text);
}

/* ── OPTIONAL PAGE CONTENT ── */
.scd-content {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ── DESKTOP ── */
@media (min-width: 769px) {
  .scd-unit { min-width: 110px; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .scd-units { gap: 8px; }
  .scd-unit  { min-width: 64px; gap: 6px; }
  .scd-num   { font-size: clamp(28px, 8vw, 48px); letter-spacing: -1px; }
  .scd-sep   { font-size: clamp(20px, 5vw, 32px); padding-bottom: 20px; }
  .scd-label { font-size: 10px; }
  .scd-progress-wrap { max-width: 100%; }
}
