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

.nav-clock { opacity: 1; transform: translateY(0); }

/* ── INPUT CARD ── */
.bcd-input-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
}

.bcd-label-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.bcd-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.bcd-selects {
  display: flex;
  gap: 10px;
}

.bcd-select {
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.bcd-select:focus { border-color: var(--accent); }

.bcd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  height: 48px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.bcd-btn:hover { background: #6a4aad; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,92,191,0.3); }

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

.bcd-result-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 12px 32px 32px;
}

.bcd-emoji {
  font-size: 52px;
  line-height: 1;
}

.bcd-result-label {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── COUNTDOWN UNITS ── */
.bcd-units {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.bcd-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 2px 20px rgba(100,60,180,0.3);
  min-width: 2ch;
  text-align: center;
}

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

.bcd-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  padding-bottom: 28px;
  line-height: 1;
  align-self: flex-start;
  margin-top: 8px;
}

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

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

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

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

/* ── CHANGE BUTTON ── */
.bcd-change-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  border-radius: 10px;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.bcd-change-btn:hover { background: rgba(255,255,255,0.25); color: white; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .bcd-input-body { padding: 28px 16px; }
  .bcd-input-row  { flex-direction: column; align-items: stretch; }
  .bcd-selects    { justify-content: center; }
  .bcd-btn        { width: 100%; justify-content: center; }
  .bcd-units      { gap: 8px; }
  .bcd-unit       { min-width: 64px; gap: 6px; }
  .bcd-num        { font-size: clamp(28px, 8vw, 48px); letter-spacing: -1px; }
  .bcd-sep        { font-size: clamp(20px, 5vw, 32px); padding-bottom: 20px; }
  .bcd-unit-label { font-size: 10px; }
}
