/* ═══════════════════════════════════════
   AlarmO'Clock — Set Timer Page
   ═══════════════════════════════════════ */

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

/* ── LAYOUT ── */
.st-card { margin-bottom: 0; }

.st-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 32px;
}

/* ── DISPLAY ── */
.st-display {
  font-family: 'DM Mono', monospace;
  font-size: clamp(56px, 14vw, 96px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.st-sep {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 4px;
}

/* ── PROGRESS BAR ── */
.st-progress-wrap {
  width: 100%;
  max-width: 480px;
  height: 6px;
  background: rgba(124,92,191,0.15);
  border-radius: 99px;
  overflow: hidden;
}
.st-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 1s linear;
}

/* ── CONTROLS ── */
.st-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.st-btn-start {
  background: var(--accent);
  color: white;
  min-width: 140px;
  justify-content: center;
}
.st-btn-start:hover { background: #6a4aad; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,92,191,0.3); }
.st-btn-start.running { background: #e8a050; }
.st-btn-start.running:hover { background: #d4903a; }

.st-btn-reset {
  background: rgba(124,92,191,0.1);
  color: var(--muted);
  border: 1px solid rgba(124,92,191,0.2);
}
.st-btn-reset:hover { background: rgba(124,92,191,0.18); color: var(--text); }

/* ── FINISHED ── */
.st-finished-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.st-finished-clock {
  width: 72px;
  height: 72px;
  color: var(--accent);
  stroke-width: 1.5;
}
.st-finished h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.st-finished p  { font-family: 'DM Mono', monospace; font-size: 14px; color: var(--muted); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .st-body { padding: 32px 20px; gap: 24px; }
  .st-controls { flex-direction: column; width: 100%; }
  .st-btn { width: 100%; justify-content: center; }
}
