/* ── Verse Action Row ─────────────────────────────────── */
.vc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.vc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  padding: 7px 13px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.vc-btn:hover {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
  background: rgba(10,92,122,0.05);
}

.vc-btn:active { transform: scale(0.96); }

/* Audio button — playing state */
.vc-btn.playing {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
  background: rgba(10,92,122,0.08);
}

/* ════════════════════════════════════════════════════════
   ADD TO HOME SCREEN
════════════════════════════════════════════════════════ */
.a2hs-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin: 12px 20px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  /* Entrance: start hidden, animated by JS */
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.a2hs-card.a2hs-visible {
  opacity: 1;
  transform: translateY(0);
}
.a2hs-card.a2hs-glow {
  animation: a2hsGlow 1.5s ease-in-out;
}
@keyframes a2hsGlow {
  0%   { box-shadow: 0 0 0 0 rgba(10, 92, 122, 0); }
  30%  { box-shadow: 0 0 8px 2px rgba(10, 92, 122, 0.25); }
  60%  { box-shadow: 0 0 4px 1px rgba(10, 92, 122, 0.12); }
  100% { box-shadow: 0 0 0 0 rgba(10, 92, 122, 0); }
}
.a2hs-text {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.4;
  transition: opacity 0.4s ease;
}
.a2hs-text.a2hs-text-fade {
  opacity: 0;
}
.a2hs-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.a2hs-btn:active {
  transform: scale(0.95);
}

/* iOS A2HS step-by-step guide */
.a2hs-guide-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.a2hs-guide-overlay.visible { opacity: 1; }
.a2hs-guide-overlay.hidden { display: none; }
.a2hs-guide {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}
.a2hs-guide-overlay.visible .a2hs-guide { transform: translateY(0); }
.a2hs-guide-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  text-align: center;
}
.a2hs-guide-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.a2hs-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.a2hs-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
}
.a2hs-guide-close {
  width: 100%;
  padding: 12px;
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}
.a2hs-guide-close:active { transform: scale(0.98); }

/* ════════════════════════════════════════════════════════
   ABOUT / FAQ OVERLAY
════════════════════════════════════════════════════════ */

/* Trigger link at bottom of landing page */
.about-trigger {
  display: block;
  margin: 16px auto 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  padding: 8px 12px;
  -webkit-tap-highlight-color: transparent;
}
.about-trigger:active {
  color: var(--text-muted);
}

/* Full-screen overlay */
.about-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  overflow-y: auto;
}
.about-overlay.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.about-locked { overflow: hidden; }

/* Header */
.ao-header {
  padding: 16px 20px 0;
}
.ao-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal-dark);
  cursor: pointer;
  padding: 8px 4px 8px 0;
}

/* Content area */
.ao-content {
  padding: 16px 24px 40px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.ao-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.ao-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 28px;
}

/* Accordion */
.ao-accordion {
  margin-top: 0;
}
.ao-item {
  border-bottom: 1px solid var(--border);
}
.ao-item:first-child {
  border-top: 1px solid var(--border);
}
.ao-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}
.ao-toggle svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--text-soft);
  transition: transform 0.25s ease;
}
.ao-toggle.open svg {
  transform: rotate(180deg);
}
.ao-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.ao-answer.open {
  max-height: 1200px;
}
.ao-body {
  padding: 0 2px 20px;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* QRIS support section */
.qris-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px 0 4px;
  gap: 12px;
}
.qris-img {
  width: 220px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.qris-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.qris-save-btn:active { transform: scale(0.97); background: rgba(0,0,0,0.03); }
.qris-save-btn svg { flex-shrink: 0; }

/* Tafsir source badges */
.source-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  margin: 3px 4px 3px 0;
}

/* ════════════════════════════════════════════════════════
   VERSE OF THE DAY
════════════════════════════════════════════════════════ */
.votd-section { margin-top: 8px; }

/* ── VOTD collapsible wrapper ─────────────────────────── */
.votd-wrap {
  margin: 0 0 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.votd-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.votd-trigger-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Override label/date colors for light trigger background */
.votd-trigger .votd-label { color: var(--gold); }
.votd-trigger .votd-date  { color: var(--text-muted); }

.votd-chevron {
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  display: flex;
}

.votd-trigger[aria-expanded="true"] .votd-chevron { transform: rotate(180deg); }

.votd-body          { display: none; }
.votd-body.open     { display: block; }

/* Card inside body: top corners squared off (wrap handles them) */
.votd-body .votd-card { border-radius: 0 0 var(--radius) var(--radius); }

.votd-skeleton {
  height: 200px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0A0F1E 0%, #0F2044 60%, #0A5C7A 100%);
  animation: votdPulse 1.5s ease-in-out infinite;
}

@keyframes votdPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.65; }
}

.votd-card {
  background: linear-gradient(135deg, #0A0F1E 0%, #0F2044 60%, #0A5C7A 100%);
  border-radius: var(--radius);
  padding: 24px 22px;
  color: white;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
}

.votd-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}

.votd-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.10);
  pointer-events: none;
}

.votd-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.votd-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.votd-date {
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  font-weight: 400;
}

.votd-arabic {
  font-family: 'Amiri', serif;
  font-size: 22px;
  line-height: 2.1;
  direction: rtl;
  text-align: right;
  color: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(201,168,76,0.22);
  border-bottom: 1px solid rgba(201,168,76,0.22);
  padding: 14px 0;
  margin-bottom: 14px;
}

.votd-translation {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
  font-style: italic;
  margin-bottom: 8px;
}

.votd-ref {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.votd-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Override vc-btn defaults for dark VOTD background */
.votd-card .vc-btn {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.07);
}
.votd-card .vc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.votd-card .vc-btn.playing {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.15);
}

/* ════════════════════════════════════════════════════════
   DAILY CARD (5-Slide Rotating Card)
════════════════════════════════════════════════════════ */
.daily-card-wrap {
  margin: 8px 0 24px;
  padding: 0 20px;
}

/* ── Hidden states ── */
.daily-skeleton.hidden { display: none; }
.daily-header.hidden { display: none; }

/* ── Skeleton ── */
.daily-skeleton {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0A0F1E 0%, #0F2044 60%, #0A5C7A 100%);
  padding: 24px 24px;
  animation: votdPulse 1.5s ease-in-out infinite;
}
.daily-skeleton-header {
  height: 14px;
  width: 40%;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  margin-bottom: 18px;
}
.daily-skeleton-body {
  height: 100px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-bottom: 16px;
}
.daily-skeleton-dots {
  height: 8px;
  width: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin: 0 auto;
}

/* ── Layer 1: Header (always visible after load) ── */
.daily-header {
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: var(--shadow-card);
  padding: 16px 18px 16px 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-radius 0.3s ease, border-color 0.18s ease;
  animation: fadeUp 0.5s ease both;
}
/* Gold vertical accent bar on the left */
.daily-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light), transparent);
  border-radius: 0 2px 2px 0;
}
.daily-header.open {
  border-radius: var(--radius) var(--radius) 0 0;
}
.daily-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.daily-header-left {
  flex: 1;
  min-width: 0;
}
.daily-header-row {
  margin-bottom: 4px;
}
.daily-header-date {
  font-size: 11px;
  color: rgba(10,15,30,0.40);
  font-weight: 400;
}
.daily-header-chevron {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  color: var(--gold);
  transition: transform 0.3s ease, background 0.2s ease;
}
.daily-header-chevron svg {
  display: block;
}
.daily-header:hover .daily-header-chevron {
  background: rgba(201,168,76,0.18);
}
.daily-header.open .daily-header-chevron {
  transform: rotate(180deg);
}
.daily-header-mode {
  flex: 1;
  height: 22px;
  overflow: hidden;
  position: relative;
}
.daily-header-mode-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-block;
  white-space: nowrap;
}

/* ── Layer 2: Carousel (accordion) ── */
.daily-carousel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.daily-carousel.open {
  max-height: 400px;
}

/* ── Slides viewport ── */
.daily-slides-viewport {
  overflow: hidden;
  position: relative;
}
.daily-slides-track {
  display: flex;
  width: 500%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.daily-slide {
  width: 20%;
  flex-shrink: 0;
  min-height: 150px;
  padding: 20px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Per-slide gradient backgrounds */
.daily-slide[data-slide="0"] {
  background: linear-gradient(135deg, #0A0F1E 0%, #0F2044 60%, #0A5C7A 100%);
}
.daily-slide[data-slide="1"] {
  background: linear-gradient(135deg, #1A2340 0%, #2D3F7A 100%);
}
.daily-slide[data-slide="2"] {
  background: linear-gradient(135deg, #0D2B26 0%, #1A5C50 100%);
}
.daily-slide[data-slide="3"] {
  background: linear-gradient(135deg, #0A0F1E 0%, #0D3B6E 100%);
}
.daily-slide[data-slide="4"] {
  background: linear-gradient(135deg, #1A2A4A 0%, #4A7FB5 100%);
}

/* Decorative circles on each slide */
.daily-slide::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}
.daily-slide::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.10);
  pointer-events: none;
}

.daily-teaser-mode {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.daily-teaser-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}
.daily-teaser-preview {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.daily-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.daily-teaser-cta::after {
  content: '↓';
  transition: transform 0.2s ease;
}
.daily-slide:hover .daily-teaser-cta::after {
  transform: translateY(2px);
}

/* ── Progress bar ── */
.daily-progress {
  height: 2px;
  background: rgba(255,255,255,0.08);
}
.daily-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: dailyProgressFill 4s linear forwards;
}
.daily-progress-fill.reset {
  animation: none;
  width: 0%;
}

@keyframes dailyProgressFill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ── Dots ── */
.daily-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 16px;
  background: #0A0F1E;
  border-radius: 0 0 var(--radius) var(--radius);
}
.daily-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.20);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.daily-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}
.daily-dot:hover:not(.active) {
  background: rgba(255,255,255,0.40);
}

/* ── Expanded body ── */
.daily-expanded-body {
  background: linear-gradient(135deg, #0A0F1E 0%, #0F2044 60%, #0A5C7A 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0 24px 28px;
  color: white;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.3s ease both;
}
.daily-expanded-body.hidden {
  display: none;
}

.daily-expanded-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-top: 20px;
}
.daily-expanded-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.daily-close-btn {
  background: rgba(255,255,255,0.10);
  border: none;
  color: rgba(255,255,255,0.70);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.daily-close-btn:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Verse display inside expanded card (shared with VOTD) */
.daily-expanded-body .votd-arabic {
  font-family: 'Amiri', serif;
  font-size: 22px;
  line-height: 2.1;
  direction: rtl;
  text-align: right;
  color: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(201,168,76,0.22);
  border-bottom: 1px solid rgba(201,168,76,0.22);
  padding: 14px 0;
  margin-bottom: 14px;
}
.daily-expanded-body .votd-translation {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
  font-style: italic;
  margin-bottom: 8px;
}
.daily-expanded-body .votd-ref {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.8px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.daily-expanded-body .votd-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.daily-expanded-body .vc-btn {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.07);
}
.daily-expanded-body .vc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.daily-expanded-body .vc-btn.playing {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.15);
}

/* Reflection/explanation text */
.daily-reflection {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 2px solid var(--gold);
}

/* CTA button inside expanded card */
.daily-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 13px 20px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 8px;
}
.daily-cta-btn:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
}

/* Surah info card (Jelajahi slide) */
.daily-surah-info {
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 16px;
}
.daily-surah-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.daily-surah-arabic {
  font-family: 'Amiri', serif;
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  direction: rtl;
  text-align: right;
  margin-bottom: 8px;
}
.daily-surah-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
}

/* Ajarkan question card */
.daily-ajarkan-question {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
}
.daily-ajarkan-category {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  text-align: center;
  margin-bottom: 8px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .daily-slides-track { transition: none; }
  .daily-progress-fill { animation: none; width: 100%; }
  .daily-header { animation: none; transition: none; }
  .daily-carousel { transition: none; }
  .daily-header-chevron { transition: none; }
  .daily-header-mode-text { transition: none !important; }
  .daily-expanded-body { animation: none; }
  .daily-teaser-cta::after { transition: none; }
  .daily-dot { transition: none; }
}

/* ════════════════════════════════════════════════════════
   VERSE ACTIONS + FEEDBACK + DISCLAIMER
════════════════════════════════════════════════════════ */
.verse-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.verse-actions.hidden { display: none; }

.va-refresh {
  flex: 1;
  padding: 13px 20px;
  background: var(--teal-dark);
  color: #fff;
  border: 1.5px solid var(--teal-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  min-width: 150px;
}
.va-refresh:hover { opacity: 0.85; }

.va-secondary {
  flex: 1;
  padding: 13px 20px;
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-dark);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  min-width: 150px;
}
.va-secondary:hover { background: rgba(10,92,122,0.06); }

.verse-feedback {
  margin-top: 24px;
  text-align: center;
  padding: 24px 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(201,168,76,0.28);
  box-shadow: var(--shadow-card);
}
.verse-feedback.hidden { display: none; }

.feedback-label {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.feedback-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.feedback-btn {
  padding: 9px 18px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.feedback-btn:hover {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
  background: rgba(10,92,122,0.05);
}
.feedback-btn.selected {
  background: var(--night-2);
  color: white;
  border-color: var(--night-2);
}

.feedback-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: feedbackFadeIn 0.3s ease;
}
@keyframes feedbackFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.feedback-thanks-icon { font-size: 22px; line-height: 1; }
.feedback-thanks-text {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.65; max-width: 340px;
}
.feedback-try-again {
  margin-top: 6px;
  padding: 8px 18px;
  background: none;
  border: 1.5px solid var(--teal-dark);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-dark);
  cursor: pointer;
  transition: all 0.15s;
}
.feedback-try-again:hover {
  background: var(--night-2);
  border-color: var(--night-2);
  color: white;
}

.verse-disclaimer {
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════
   LOADING + SKELETON + ERROR
════════════════════════════════════════════════════════ */
.loading-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 0 12px;
}

.loading-spinner {
  width: 32px; height: 32px;
  border: 2.5px solid var(--border);
  border-top-color: var(--teal-dark);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-text { font-size: 15px; color: var(--text-muted); font-weight: 400; }

.loading-dot { opacity: 0; animation: blink 1.4s infinite; }
.loading-dot:nth-child(1) { animation-delay: 0.0s; }
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink {
  0%, 60%, 100% { opacity: 0; }
  30%           { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton-card { pointer-events: none; }

.sk-line, .sk-block {
  border-radius: 6px;
  background: linear-gradient(90deg, #E8EDF2 25%, #F2F5F8 50%, #E8EDF2 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 12px;
}
.sk-line           { height: 12px; width: 100%; }
.sk-line.sk-short  { width: 40%; }
.sk-line.sk-medium { width: 70%; }
.sk-block          { height: 72px; margin: 16px 0; border-radius: 8px; }

.error-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
}
.error-emoji { font-size: 40px; }
.error-msg { font-size: 15px; color: var(--text-muted); max-width: 320px; line-height: 1.75; }
.error-back-btn {
  background: var(--night-2);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.error-back-btn:hover { background: var(--night-3); }

/* ════════════════════════════════════════════════════════
   TOAST
════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--night-1);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

