.live-darshan-page .live-panel {
  margin: 26px 0;
}

.live-darshan-grid {
  display: grid;
  gap: 18px;
}

.live-darshan-card {
  overflow: hidden;
  border: 1px solid var(--border, #f3e5f5);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(74, 0, 114, 0.08);
}

.live-darshan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border, #f3e5f5);
}

.live-darshan-title {
  margin: 0;
  color: #1a202c;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.22rem);
  line-height: 1.3;
}

.live-darshan-meta {
  margin: 5px 0 0;
  color: #374151;
  font-size: 0.94rem;
}

.live-darshan-status {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff3e0;
  color: #4a0072;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.live-darshan-frame {
  aspect-ratio: 16 / 9;
  background: #08070a;
}

.live-darshan-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-darshan-actions {
  display: flex;
  justify-content: flex-end;
  padding: 12px 18px 16px;
}

.live-darshan-sound {
  border: 1px solid rgba(74, 0, 114, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #4a0072;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 9px 12px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.live-darshan-sound:hover,
.live-darshan-sound:focus-visible {
  background: #f3e5f5;
  border-color: rgba(74, 0, 114, 0.38);
  transform: translateY(-1px);
}

.live-darshan-empty {
  padding: 18px;
  border: 1px solid var(--border, #f3e5f5);
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  line-height: 1.65;
}

.live-darshan-schedule {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.live-darshan-schedule-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--border, #f3e5f5);
  border-radius: 8px;
  background: #ffffff;
}

.live-darshan-time {
  color: #4a0072;
  font-weight: 800;
  white-space: nowrap;
}

.live-darshan-note {
  color: #374151;
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .live-darshan-head,
  .live-darshan-schedule-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .live-darshan-head {
    display: grid;
  }

  .live-darshan-status,
  .live-darshan-time {
    justify-self: start;
  }
}
