/* ═══════════════════════════════════════
   NEXT PRAYER HERO CARD
═══════════════════════════════════════ */
.next-prayer-card {
  background: linear-gradient(135deg, #1a3a6e 0%, #0d2550 100%);
  border: 1px solid rgba(77,166,255,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.next-prayer-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,169,74,0.08), transparent 60%);
  pointer-events: none;
}

.np-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--teal); text-transform: uppercase;
  font-family: var(--mono); margin-bottom: 14px;
}
.np-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.np-main {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 16px;
}
.np-left { display: flex; align-items: center; gap: 14px; }
.np-icon { font-size: 36px; }
.np-name {
  font-size: 26px; font-weight: 800; letter-spacing: -0.5px;
  line-height: 1.1;
}
.np-arabic {
  font-size: 18px; color: var(--gold); margin-top: 2px;
  font-family: var(--arabic); direction: rtl;
}
.np-right { text-align: right; flex-shrink: 0; }
.np-time {
  font-size: 28px; font-weight: 800;
  font-family: var(--mono); letter-spacing: -0.5px;
}
.np-countdown {
  font-size: 13px; color: var(--teal);
  font-family: var(--mono); margin-top: 3px;
}

.np-progress-wrap {
  height: 4px; background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.np-progress-bar {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 1s linear;
}

/* ═══════════════════════════════════════
   PRAYER LIST
═══════════════════════════════════════ */
.prayer-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.prayer-row {
  display: flex; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  position: relative;
}
.prayer-row:last-child { border-bottom: none; }
.prayer-row:hover { background: var(--faint); }
.prayer-row.next { background: rgba(77,166,255,0.06); }
.prayer-row.past { opacity: 0.45; }

/* Left accent bar for current/next prayer */
.prayer-row.next::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--teal);
  border-radius: 0 2px 2px 0;
}

.pr-icon {
  width: 36px; font-size: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pr-names { flex: 1; min-width: 0; }
.pr-name {
  font-size: 15px; font-weight: 700;
  color: var(--text);
}
.pr-arabic {
  font-size: 13px; color: var(--gold);
  font-family: var(--arabic); direction: rtl;
  margin-top: 1px;
}
.pr-right {
  display: flex; align-items: center; gap: 12px;
  margin-left: 12px; flex-shrink: 0;
}
.pr-time {
  font-size: 16px; font-weight: 700;
  font-family: var(--mono); letter-spacing: -0.3px;
}
.pr-notif {
  background: none; border: none; font-size: 15px;
  opacity: 0.3; transition: opacity var(--transition);
  padding: 4px;
}
.pr-notif:hover, .pr-notif.on { opacity: 1; }
.pr-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 2px 8px; border-radius: 8px;
  font-family: var(--mono);
}
.pr-badge.next-badge {
  background: rgba(77,166,255,0.15); color: var(--teal);
}
.pr-badge.past-badge {
  background: rgba(255,255,255,0.06); color: var(--muted);
}

/* ═══════════════════════════════════════
   PLAYING EQ ANIMATION (for active prayer)
═══════════════════════════════════════ */
.pr-eq {
  display: none; align-items: flex-end; gap: 2px; height: 14px;
}
.prayer-row.next .pr-eq { display: flex; }
.eq-b {
  width: 3px; border-radius: 2px; background: var(--teal);
  animation: eqb 0.6s ease-in-out infinite alternate;
}
.eq-b:nth-child(1){ height: 6px; }
.eq-b:nth-child(2){ height: 12px; animation-delay: 0.2s; }
.eq-b:nth-child(3){ height: 8px;  animation-delay: 0.1s; }
@keyframes eqb { from{transform:scaleY(0.3)} to{transform:scaleY(1)} }
