/* ═══════════════════════════════════════════════════════
   SERMON ANALYZER — Clean Design System
   Tailwind CSS companion · Warm Neutral + Deep Indigo
   ═══════════════════════════════════════════════════════ */

/* ─── Subtle Background ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.04), transparent 70%);
  pointer-events: none;
}
.dark body::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.06), transparent 70%);
}

/* ─── Glass Nav (유지) ─── */
.glass-nav {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
}
.dark .glass-nav {
  background: rgba(15, 15, 20, 0.85);
}

/* ─── Clean Card (glass-morphism 제거) ─── */
.glass-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}
.dark .glass-card {
  background: #1a1a24;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ─── Modal Panel (glass 유지) ─── */
.modal-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
}
.dark .modal-panel {
  background: rgba(26, 26, 36, 0.95);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ─── Nav Buttons ─── */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  color: inherit;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.nav-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(99, 102, 241, 0.3);
  color: #4f46e5;
}
.dark .nav-btn {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.dark .nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(129, 140, 248, 0.4);
  color: #a5b4fc;
}

/* ─── Input Field ─── */
.input-field {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(0, 0, 0, 0.02);
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-field:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
  background: transparent;
}
.dark .input-field {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.dark .input-field:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
}

/* ─── Primary Button ─── */
.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

/* ─── Provider Card ─── */
.provider-radio-label { cursor: pointer; }
.provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.dark .provider-card { border-color: rgba(255, 255, 255, 0.08); }
.provider-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.03);
}
.provider-card-active,
.peer:checked ~ .provider-card-active {
  border-color: #6366f1 !important;
  background: rgba(99, 102, 241, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.dark .provider-card-active,
.dark .peer:checked ~ .provider-card-active {
  border-color: #818cf8 !important;
  background: rgba(129, 140, 248, 0.1) !important;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}
.peer:checked ~ .provider-card {
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.06);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.dark .peer:checked ~ .provider-card {
  border-color: #818cf8;
  background: rgba(129, 140, 248, 0.1);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

/* ─── Status Dot ─── */
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-active {
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  animation: pulseSoft 2s ease-in-out infinite;
}
.status-inactive { background: #9CA3AF; }
@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 16px rgba(16, 185, 129, 0.3); }
}

/* ─── Progress Steps ─── */
.progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.dark .progress-step { background: rgba(255, 255, 255, 0.03); }
.step-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  color: #9CA3AF;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.dark .step-icon-wrap { background: rgba(255, 255, 255, 0.06); }
.step-title { font-size: 14px; font-weight: 600; }
.step-status { font-size: 11px; color: #9CA3AF; }

/* Step states */
.progress-step.active {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.12);
}
.dark .progress-step.active {
  background: rgba(129, 140, 248, 0.08);
  border-color: rgba(129, 140, 248, 0.15);
}
.progress-step.active .step-icon-wrap {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}
.progress-step.active .step-status { color: #4f46e5; }
.dark .progress-step.active .step-status { color: #a5b4fc; }

.progress-step.done {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.12);
}
.dark .progress-step.done {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.15);
}
.progress-step.done .step-icon-wrap {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}
.progress-step.done .step-status { color: #10B981; }

.progress-step.error {
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.12);
}
.progress-step.error .step-icon-wrap {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white;
}
.progress-step.error .step-status { color: #EF4444; }

/* ─── Highlight & Emphasis Marks ─── */
.highlight-mark {
  background: none;
  font-weight: 700;
  color: #DC2626;
  font-style: normal;
}
.dark .highlight-mark {
  color: #F87171;
}
.text-emphasis {
  color: #1e1b4b;
  font-weight: 700;
}
.dark .text-emphasis { color: #c7d2fe; }

/* ─── Export Button ─── */
.export-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  color: inherit;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.export-btn:hover {
  border-color: rgba(99, 102, 241, 0.4);
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.04);
  transform: translateY(-1px);
}
.dark .export-btn {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.dark .export-btn:hover {
  border-color: rgba(129, 140, 248, 0.4);
  color: #a5b4fc;
  background: rgba(129, 140, 248, 0.06);
}
.export-btn.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* ─── Sermon Info Card ─── */
.sermon-info-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.sermon-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #d4a574);
  border-radius: 1rem 1rem 0 0;
}
.dark .sermon-info-card {
  background: #1a1a24;
  border-color: rgba(255, 255, 255, 0.06);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #6B7280;
}
.dark .meta-item { color: #9CA3AF; }
.meta-item [data-lucide],
.meta-item svg {
  color: #4f46e5;
  flex-shrink: 0;
}
.dark .meta-item [data-lucide],
.dark .meta-item svg {
  color: #a5b4fc;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  background: rgba(99, 102, 241, 0.06);
  color: #4f46e5;
  border: 1px solid rgba(99, 102, 241, 0.1);
}
.dark .tag {
  background: rgba(129, 140, 248, 0.1);
  color: #c7d2fe;
  border-color: rgba(129, 140, 248, 0.12);
}

/* ─── Result Blocks (클린 카드) ─── */
.result-block {
  border-radius: 1rem;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}
.dark .result-block {
  background: #1a1a24;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(0, 0, 0, 0.01);
}
.dark .block-header {
  border-bottom-color: rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
}

/* 블록별 accent 차별화 */
.block-header-summary { border-bottom-color: rgba(74, 111, 165, 0.15); }
.block-header-content { border-bottom-color: rgba(82, 122, 91, 0.15); }
.block-header-meditation { border-bottom-color: rgba(194, 120, 92, 0.15); }

.block-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* accent 아이콘 색상 — 블록별 */
.block-header-summary .block-icon {
  background: rgba(74, 111, 165, 0.1);
  color: #4A6FA5;
}
.dark .block-header-summary .block-icon {
  background: rgba(74, 111, 165, 0.15);
  color: #7BA3D4;
}
.block-header-content .block-icon {
  background: rgba(82, 122, 91, 0.1);
  color: #527A5B;
}
.dark .block-header-content .block-icon {
  background: rgba(82, 122, 91, 0.15);
  color: #7DB08A;
}
.block-header-meditation .block-icon {
  background: rgba(194, 120, 92, 0.1);
  color: #C2785C;
}
.dark .block-header-meditation .block-icon {
  background: rgba(194, 120, 92, 0.15);
  color: #D9A08A;
}

.block-body {
  padding: 20px;
}

/* ─── Summary ─── */
.summary-text {
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(74, 111, 165, 0.04);
  border-left: 3px solid #4A6FA5;
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
}
.dark .summary-text {
  background: rgba(74, 111, 165, 0.08);
  color: #D1D5DB;
}

/* ─── Content Sections ─── */
.content-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.dark .content-section { border-bottom-color: rgba(255, 255, 255, 0.04); }
.content-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.content-section-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding-bottom: 2px;
  background: linear-gradient(135deg, #527A5B, #6B9B76);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(82, 122, 91, 0.2);
}
.section-title {
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.section-subtitle {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 400;
}

.section-body {
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
  max-width: 65ch;
}
.dark .section-body { color: #D1D5DB; }
.section-body p { margin-bottom: 12px; }
.section-body p:last-child { margin-bottom: 0; }
.section-body strong { color: #1F2937; font-weight: 600; }
.dark .section-body strong { color: #F3F4F6; }

/* ─── Scripture Quote ─── */
.scripture-quote {
  margin: 16px 0;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(139, 111, 71, 0.04);
  border-left: 3px solid #8B6F47;
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
  color: #78716C;
}
.dark .scripture-quote {
  background: rgba(139, 111, 71, 0.08);
  border-left-color: #B8860B;
  color: #D6D3D1;
}
.scripture-ref {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #8B6F47;
  font-style: normal;
  font-weight: 600;
}
.dark .scripture-ref { color: #D4A574; }

/* ─── Key Point ─── */
.key-point {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(74, 111, 165, 0.04);
  border-left: 3px solid #4A6FA5;
  margin: 14px 0;
  font-size: 14px;
  line-height: 1.75;
}
.dark .key-point {
  background: rgba(74, 111, 165, 0.08);
  border-left-color: #7BA3D4;
}
.key-point-icon {
  color: #4A6FA5;
  margin-top: 2px;
  flex-shrink: 0;
}
.dark .key-point-icon { color: #7BA3D4; }

/* ─── Conclusion ─── */
.conclusion-text {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
}
.dark .conclusion-text { color: #D1D5DB; }
.conclusion-text ul {
  list-style: none;
  padding: 0;
}
.conclusion-text li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}
.conclusion-text li::before {
  content: '';
  position: absolute;
  left: 2px; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C2785C;
}

/* ─── Meditation Questions ─── */
.meditation-questions h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #C2785C;
}
.dark .meditation-questions h4 { color: #D9A08A; }
.meditation-questions ol {
  padding-left: 18px;
}
.meditation-questions li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: #6B7280;
}
.dark .meditation-questions li { color: #9CA3AF; }

/* ─── Closing Verse ─── */
.closing-verse {
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(139, 111, 71, 0.04);
  border-left: 3px solid #8B6F47;
  font-family: 'Noto Serif KR', Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  color: #6B7280;
}
.dark .closing-verse {
  background: rgba(139, 111, 71, 0.08);
  border-left-color: #B8860B;
  color: #D1D5DB;
}
.closing-verse:empty { display: none; }

/* ─── Spinner ─── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Toast Notification ─── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toastIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 340px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.dark .toast {
  background: #1a1a24;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.toast.success { border-color: rgba(16, 185, 129, 0.3); }
.toast.success svg { color: #10B981; }
.toast.error { border-color: rgba(239, 68, 68, 0.3); }
.toast.error svg { color: #EF4444; }

@keyframes toastIn {
  from { transform: translateY(20px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* ─── Streaming Cursor ─── */
.streaming-cursor::after {
  content: '▌';
  animation: blink 0.8s infinite;
  color: #6366f1;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── Content Table ─── */
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.content-table th,
.content-table td {
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
}
.dark .content-table th,
.dark .content-table td {
  border-color: rgba(255, 255, 255, 0.06);
}
.content-table th {
  background: rgba(0, 0, 0, 0.02);
  font-weight: 600;
  font-size: 13px;
  color: #6B7280;
}
.dark .content-table th {
  background: rgba(255, 255, 255, 0.03);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile First 3단계
   ═══════════════════════════════════════ */

/* 기본: 모바일 (~639px) */
.section-body {
  padding-left: 0;
  font-size: 15px;
}
.block-body {
  padding: 20px;
}
.sermon-info-card {
  padding: 18px;
}
.content-section-header .section-number {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

/* 태블릿 (640px+) */
@media (min-width: 640px) {
  .section-body {
    padding-left: 36px;
    font-size: 16px;
  }
  .block-body {
    padding: 24px;
  }
  .sermon-info-card {
    padding: 24px;
  }
  .content-section-header .section-number {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

/* 데스크탑 (1024px+) */
@media (min-width: 1024px) {
  .block-body {
    padding: 28px 32px;
  }
  .block-header {
    padding: 16px 32px;
  }
}

/* ─── Progress Bar Shimmer ─── */
#progressBar {
  position: relative;
  overflow: hidden;
}
#progressBar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ─── Video Card (즐겨찾기 최근 영상) ─── */
.video-card {
  display: block;
  width: 100%;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dark .video-card {
  background: #1a1a24;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.35);
}
.dark .video-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border-color: rgba(129, 140, 248, 0.35);
}
.video-card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1F2937;
}
.dark .video-card-title { color: #E5E7EB; }
.video-card-date {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 3px;
}

/* Print */
@media print {
  nav, .hero-section, .export-toolbar, footer,
  #videoPreview, #progressSection, #errorSection {
    display: none !important;
  }
  #resultSection { display: block !important; }
  body {
    background: white !important;
    color: #1A1A1A !important;
  }
  .result-block, .sermon-info-card {
    box-shadow: none !important;
    break-inside: avoid;
  }
}

