/* ═══════════════════════════════════════════════════════════════════════════
   HARAMAIN COMPANION — planner-v2.css  v1.0  (05.05.2026)
   Tagesplaner · Prefix: hcpl-*
   ═══════════════════════════════════════════════════════════════════════════ */

#hcpl-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a1814;
  z-index: 9050;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
#hcpl-modal.hcpl-open { display: block; }

/* Header */
.hcpl-hdr {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 24, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hcpl-hdr-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
}
.hcpl-hdr-mid { flex: 1; min-width: 0; }
.hcpl-hdr-eyebrow {
  color: #d4a843;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.hcpl-hdr-title { font-size: 17px; font-weight: 600; margin-top: 2px; }

/* Stadt-Toggle */
.hcpl-city-toggle {
  margin: 12px;
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
}
.hcpl-city-btn {
  flex: 1;
  padding: 9px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  background: transparent;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
}
.hcpl-city-btn.hcpl-active {
  background: rgba(45,212,191,0.15);
  color: #2dd4bf;
}

/* Filter-Strip */
.hcpl-filter-strip {
  display: flex;
  gap: 5px;
  padding: 0 12px 10px;
  flex-wrap: wrap;
}
.hcpl-filter-pill {
  background: rgba(255,255,255,0.04);
  padding: 5px 10px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: inherit;
}
.hcpl-filter-pill.hcpl-active.hcpl-all { background: rgba(45,212,191,0.15); border-color: rgba(45,212,191,0.4); color: #2dd4bf; }
.hcpl-filter-pill.hcpl-active.hcpl-easy { background: rgba(16,185,129,0.18); border-color: rgba(16,185,129,0.5); color: #10b981; }
.hcpl-filter-pill.hcpl-active.hcpl-mid { background: rgba(245,158,11,0.18); border-color: rgba(245,158,11,0.5); color: #f59e0b; }
.hcpl-filter-pill.hcpl-active.hcpl-hard { background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.5); color: #ef4444; }
.hcpl-filter-ct {
  background: rgba(255,255,255,0.1);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 9px;
}

/* "Jetzt aktiv"-Card */
.hcpl-now-active {
  margin: 0 12px 10px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(212,168,67,0.14), rgba(212,168,67,0.04));
  border-left: 3px solid #d4a843;
  border-radius: 10px;
  cursor: pointer;
}
.hcpl-now-title {
  color: #d4a843;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.hcpl-now-route { font-weight: 600; font-size: 14px; color: #fff; }
.hcpl-now-station { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.hcpl-now-actions { display: flex; gap: 6px; margin-top: 10px; }
.hcpl-now-btn {
  flex: 1;
  background: rgba(212,168,67,0.22);
  color: #d4a843;
  padding: 7px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.hcpl-now-btn.hcpl-alt {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* Route-Card */
.hcpl-route-card {
  margin: 0 12px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 12px;
  border-left: 3px solid #10b981;
  cursor: pointer;
  transition: background 0.15s;
}
.hcpl-route-card.hcpl-mid { border-left-color: #f59e0b; }
.hcpl-route-card.hcpl-hard { border-left-color: #ef4444; }
.hcpl-route-card:active { background: rgba(255,255,255,0.06); }
.hcpl-route-head { display: flex; align-items: center; gap: 10px; }
.hcpl-route-icon { font-size: 26px; flex-shrink: 0; }
.hcpl-route-info { flex: 1; min-width: 0; }
.hcpl-route-title { font-weight: 600; font-size: 14px; color: #fff; }
.hcpl-route-summary {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  margin-top: 3px;
  line-height: 1.4;
}
.hcpl-route-tags { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.hcpl-route-tag {
  background: rgba(255,255,255,0.06);
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}
.hcpl-route-tag.hcpl-easy { background: rgba(16,185,129,0.18); color: #10b981; }
.hcpl-route-tag.hcpl-mid { background: rgba(245,158,11,0.18); color: #f59e0b; }
.hcpl-route-tag.hcpl-hard { background: rgba(239,68,68,0.18); color: #ef4444; }
.hcpl-route-progress {
  margin-top: 8px;
  height: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.hcpl-route-progress-fill {
  height: 100%;
  background: #10b981;
  border-radius: 2px;
}
.hcpl-route-progress-label {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* Detail-View Hero */
.hcpl-detail-hero {
  margin: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(16,185,129,0.12), rgba(16,185,129,0.03));
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 12px;
}
.hcpl-detail-hero.hcpl-mid {
  background: linear-gradient(180deg, rgba(245,158,11,0.12), rgba(245,158,11,0.03));
  border-color: rgba(245,158,11,0.3);
}
.hcpl-detail-hero.hcpl-hard {
  background: linear-gradient(180deg, rgba(239,68,68,0.12), rgba(239,68,68,0.03));
  border-color: rgba(239,68,68,0.3);
}
.hcpl-detail-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #10b981;
  margin-bottom: 6px;
}
.hcpl-detail-hero.hcpl-mid .hcpl-detail-eyebrow { color: #f59e0b; }
.hcpl-detail-hero.hcpl-hard .hcpl-detail-eyebrow { color: #ef4444; }
.hcpl-detail-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hcpl-detail-summary { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.hcpl-detail-meta { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.hcpl-detail-meta-tag {
  background: rgba(255,255,255,0.06);
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}

/* Progress-Card */
.hcpl-progress-card {
  margin: 0 12px 12px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}
.hcpl-progress-row {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.hcpl-progress-num { color: #d4a843; }
.hcpl-progress-track {
  height: 6px;
  background: rgba(0,0,0,0.3);
  border-radius: 3px;
  overflow: hidden;
}
.hcpl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 3px;
  transition: width 0.4s;
}
.hcpl-progress-actions { display: flex; gap: 6px; margin-top: 10px; }
.hcpl-progress-btn {
  flex: 1;
  padding: 7px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hcpl-progress-btn.hcpl-share { background: rgba(45,212,191,0.12); color: #2dd4bf; }
.hcpl-progress-btn.hcpl-continue { background: rgba(212,168,67,0.12); color: #d4a843; }
.hcpl-progress-btn.hcpl-reset { background: rgba(239,68,68,0.12); color: #ef4444; }

/* Timeline */
.hcpl-timeline {
  position: relative;
  padding-left: 40px;
  margin: 0 12px 16px;
}
.hcpl-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.hcpl-station {
  position: relative;
  margin-bottom: 10px;
}
.hcpl-dot {
  position: absolute;
  left: -38px;
  top: 8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border: 2px solid #0a1814;
  z-index: 2;
}
.hcpl-dot.hcpl-done { background: #10b981; color: #fff; }
.hcpl-dot.hcpl-current {
  background: #d4a843;
  color: #0a1814;
  box-shadow: 0 0 0 4px rgba(212,168,67,0.3);
  animation: hcpl-pulse 2s ease-in-out infinite;
}
@keyframes hcpl-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(212,168,67,0.3); }
  50% { box-shadow: 0 0 0 7px rgba(212,168,67,0.5); }
}
.hcpl-st-card {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.hcpl-st-card.hcpl-current {
  background: rgba(212,168,67,0.06);
  border-color: rgba(212,168,67,0.3);
}
.hcpl-st-card.hcpl-done {
  opacity: 0.6;
}
.hcpl-st-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hcpl-st-time {
  background: rgba(212,168,67,0.18);
  color: #d4a843;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.hcpl-st-place {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  min-width: 0;
}
.hcpl-st-place-ar {
  font-family: 'Amiri', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  direction: rtl;
  display: inline-block;
  margin-left: 5px;
}
.hcpl-st-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.hcpl-st-btn {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hcpl-st-btn.hcpl-maps { background: rgba(96,165,250,0.18); color: #60a5fa; }
.hcpl-st-btn.hcpl-done-btn { background: rgba(16,185,129,0.18); color: #10b981; }
.hcpl-st-btn.hcpl-done-btn.hcpl-active { background: #10b981; color: #fff; }

/* Detail (im Station-Card aufgeklappt) */
.hcpl-st-detail {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hcpl-st-card.hcpl-current .hcpl-st-detail,
.hcpl-st-card.hcpl-expanded .hcpl-st-detail { display: block; }

.hcpl-st-shortdesc {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.hcpl-st-block {
  background: rgba(168,85,247,0.06);
  border-left: 3px solid #a855f7;
  padding: 10px;
  border-radius: 7px;
  margin-bottom: 10px;
}
.hcpl-st-block-title {
  color: #a855f7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.hcpl-st-block-list {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.hcpl-dua-toggle {
  width: 100%;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.3);
  color: #d4a843;
  padding: 8px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  margin-bottom: 8px;
}
.hcpl-dua-list {
  display: none;
  padding: 10px;
  background: rgba(0,0,0,0.18);
  border-radius: 7px;
  margin-bottom: 10px;
}
.hcpl-dua-list.hcpl-open { display: block; }
.hcpl-dua-item { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hcpl-dua-item:last-child { border-bottom: none; }
.hcpl-dua-title { font-size: 11px; font-weight: 600; color: #d4a843; margin-bottom: 4px; }
.hcpl-dua-ar {
  font-family: 'Amiri', serif;
  font-size: 16px;
  text-align: right;
  direction: rtl;
  margin: 4px 0;
}
.hcpl-dua-tl { font-style: italic; font-size: 11px; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.hcpl-dua-de { font-size: 11px; color: rgba(255,255,255,0.85); }

.hcpl-st-transport {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(96,165,250,0.06);
  border-radius: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.hcpl-st-transport-icon { font-size: 16px; }

.hcpl-st-cta { display: flex; gap: 6px; }
.hcpl-st-cta-btn {
  flex: 1;
  padding: 8px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hcpl-st-cta-btn.hcpl-maps-cta { background: rgba(96,165,250,0.18); color: #60a5fa; }
.hcpl-st-cta-btn.hcpl-info { background: rgba(168,85,247,0.15); color: #c084fc; }
.hcpl-st-cta-btn.hcpl-done-cta { background: rgba(16,185,129,0.18); color: #10b981; }
.hcpl-st-cta-btn.hcpl-done-cta.hcpl-active { background: #10b981; color: #fff; }

/* Settings */
.hcpl-settings-section { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hcpl-settings-title { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 600; }
.hcpl-settings-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 13px; color: #fff; gap: 12px; }
.hcpl-toggle { width: 38px; height: 22px; background: rgba(255,255,255,0.15); border-radius: 11px; position: relative; cursor: pointer; flex-shrink: 0; }
.hcpl-toggle.hcpl-on { background: #2dd4bf; }
.hcpl-toggle-thumb { position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: left 0.2s; }
.hcpl-toggle.hcpl-on .hcpl-toggle-thumb { left: 18px; }
.hcpl-seg { display: flex; gap: 4px; }
.hcpl-seg-opt { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); padding: 6px 10px; border-radius: 7px; font-size: 11px; cursor: pointer; color: #fff; font-family: inherit; }
.hcpl-seg-opt.hcpl-active { background: rgba(45,212,191,0.15); border-color: rgba(45,212,191,0.4); color: #2dd4bf; }
.hcpl-lang-select { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 7px; color: #fff; padding: 5px 8px; font-size: 12px; font-family: inherit; cursor: pointer; }
.hcpl-stat-gold { color: #d4a843; font-weight: 700; }
.hcpl-stat-emerald { color: #10b981; font-weight: 700; }

/* Empty/Loading */
.hcpl-state { text-align: center; padding: 60px 20px; color: rgba(255,255,255,0.6); }
.hcpl-state-icon { font-size: 48px; margin-bottom: 14px; opacity: 0.7; }

/* Schriftgröße */
#hcpl-modal[data-fontsize="S"] .hcpl-route-title { font-size: 13px; }
#hcpl-modal[data-fontsize="S"] .hcpl-st-place { font-size: 12px; }
#hcpl-modal[data-fontsize="S"] .hcpl-detail-title { font-size: 14px; }
#hcpl-modal[data-fontsize="L"] .hcpl-route-title { font-size: 16px; }
#hcpl-modal[data-fontsize="L"] .hcpl-st-place { font-size: 15px; }
#hcpl-modal[data-fontsize="L"] .hcpl-detail-title { font-size: 18px; }

/* Anzeige-Toggles */
#hcpl-modal[data-show-duas="off"] .hcpl-dua-toggle,
#hcpl-modal[data-show-duas="off"] .hcpl-dua-list { display: none !important; }
#hcpl-modal[data-show-transport="off"] .hcpl-st-transport { display: none; }
#hcpl-modal[data-show-whattodo="off"] .hcpl-st-block { display: none; }
#hcpl-modal[data-show-ar="off"] .hcpl-st-place-ar { display: none; }
#hcpl-modal[data-show-now="off"] .hcpl-now-active { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   HELLER MODUS — KOMPLETTE Cascade
   ═══════════════════════════════════════════════════════════════════════════ */
#hcpl-modal[data-light="on"] { background: #f5f0e4; color: #1f2d28; }
#hcpl-modal[data-light="on"] .hcpl-hdr { background: rgba(245,240,228,0.95); border-color: rgba(0,0,0,0.08); }
#hcpl-modal[data-light="on"] .hcpl-hdr-eyebrow { color: #b8862e; }
#hcpl-modal[data-light="on"] .hcpl-hdr-title { color: #0a1814; }
#hcpl-modal[data-light="on"] .hcpl-hdr-btn { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: #1f2d28; }

/* City-Toggle */
#hcpl-modal[data-light="on"] .hcpl-city-toggle { background: rgba(0,0,0,0.04); }
#hcpl-modal[data-light="on"] .hcpl-city-btn { color: rgba(0,0,0,0.6); }
#hcpl-modal[data-light="on"] .hcpl-city-btn.hcpl-active { background: rgba(45,148,106,0.18); color: #2d946a; }

/* Filter-Pills */
#hcpl-modal[data-light="on"] .hcpl-filter-pill { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); color: rgba(0,0,0,0.65); }
#hcpl-modal[data-light="on"] .hcpl-filter-pill.hcpl-active.hcpl-all { background: rgba(45,148,106,0.18); border-color: rgba(45,148,106,0.55); color: #2d946a; }
#hcpl-modal[data-light="on"] .hcpl-filter-pill.hcpl-active.hcpl-easy { background: rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.6); color: #047857; }
#hcpl-modal[data-light="on"] .hcpl-filter-pill.hcpl-active.hcpl-mid { background: rgba(217,119,6,0.2); border-color: rgba(217,119,6,0.6); color: #b45309; }
#hcpl-modal[data-light="on"] .hcpl-filter-pill.hcpl-active.hcpl-hard { background: rgba(220,38,38,0.2); border-color: rgba(220,38,38,0.6); color: #b91c1c; }
#hcpl-modal[data-light="on"] .hcpl-filter-ct { background: rgba(0,0,0,0.08); }

/* Now-active */
#hcpl-modal[data-light="on"] .hcpl-now-active { background: rgba(184,134,46,0.12); border-left-color: #b8862e; }
#hcpl-modal[data-light="on"] .hcpl-now-title { color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-now-route { color: #0a1814; }
#hcpl-modal[data-light="on"] .hcpl-now-station { color: rgba(0,0,0,0.7); }
#hcpl-modal[data-light="on"] .hcpl-now-btn { background: rgba(184,134,46,0.22); color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-now-btn.hcpl-alt { background: rgba(0,0,0,0.06); color: #0a1814; }

/* Route-Cards */
#hcpl-modal[data-light="on"] .hcpl-route-card { background: rgba(0,0,0,0.03); border-left-color: #047857; }
#hcpl-modal[data-light="on"] .hcpl-route-card.hcpl-mid { border-left-color: #b45309; }
#hcpl-modal[data-light="on"] .hcpl-route-card.hcpl-hard { border-left-color: #b91c1c; }
#hcpl-modal[data-light="on"] .hcpl-route-title { color: #0a1814; }
#hcpl-modal[data-light="on"] .hcpl-route-summary { color: rgba(0,0,0,0.65); }
#hcpl-modal[data-light="on"] .hcpl-route-tag { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.7); }
#hcpl-modal[data-light="on"] .hcpl-route-tag.hcpl-easy { background: rgba(16,185,129,0.2); color: #047857; }
#hcpl-modal[data-light="on"] .hcpl-route-tag.hcpl-mid { background: rgba(217,119,6,0.2); color: #b45309; }
#hcpl-modal[data-light="on"] .hcpl-route-tag.hcpl-hard { background: rgba(220,38,38,0.2); color: #b91c1c; }
#hcpl-modal[data-light="on"] .hcpl-route-progress { background: rgba(0,0,0,0.08); }
#hcpl-modal[data-light="on"] .hcpl-route-progress-fill { background: #047857; }
#hcpl-modal[data-light="on"] .hcpl-route-progress-label { color: rgba(0,0,0,0.55); }

/* Detail-Hero */
#hcpl-modal[data-light="on"] .hcpl-detail-hero { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.4); }
#hcpl-modal[data-light="on"] .hcpl-detail-hero.hcpl-mid { background: rgba(217,119,6,0.1); border-color: rgba(217,119,6,0.4); }
#hcpl-modal[data-light="on"] .hcpl-detail-hero.hcpl-hard { background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.4); }
#hcpl-modal[data-light="on"] .hcpl-detail-eyebrow { color: #047857; }
#hcpl-modal[data-light="on"] .hcpl-detail-hero.hcpl-mid .hcpl-detail-eyebrow { color: #b45309; }
#hcpl-modal[data-light="on"] .hcpl-detail-hero.hcpl-hard .hcpl-detail-eyebrow { color: #b91c1c; }
#hcpl-modal[data-light="on"] .hcpl-detail-title { color: #0a1814; }
#hcpl-modal[data-light="on"] .hcpl-detail-summary { color: rgba(0,0,0,0.75); }
#hcpl-modal[data-light="on"] .hcpl-detail-meta-tag { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.7); }

/* Progress-Card */
#hcpl-modal[data-light="on"] .hcpl-progress-card { background: rgba(0,0,0,0.04); }
#hcpl-modal[data-light="on"] .hcpl-progress-row { color: rgba(0,0,0,0.6); }
#hcpl-modal[data-light="on"] .hcpl-progress-num { color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-progress-track { background: rgba(0,0,0,0.1); }
#hcpl-modal[data-light="on"] .hcpl-progress-fill { background: linear-gradient(90deg, #047857, #10b981); }
#hcpl-modal[data-light="on"] .hcpl-progress-btn.hcpl-share { background: rgba(45,148,106,0.18); color: #2d946a; }
#hcpl-modal[data-light="on"] .hcpl-progress-btn.hcpl-continue { background: rgba(184,134,46,0.18); color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-progress-btn.hcpl-reset { background: rgba(220,38,38,0.18); color: #b91c1c; }

/* Timeline */
#hcpl-modal[data-light="on"] .hcpl-timeline::before { background: rgba(0,0,0,0.12); }
#hcpl-modal[data-light="on"] .hcpl-dot { background: rgba(0,0,0,0.08); color: rgba(0,0,0,0.5); border-color: #f5f0e4; }
#hcpl-modal[data-light="on"] .hcpl-dot.hcpl-done { background: #047857; color: #fff; }
#hcpl-modal[data-light="on"] .hcpl-dot.hcpl-current { background: #b8862e; color: #fff; }

/* Station-Card */
#hcpl-modal[data-light="on"] .hcpl-st-card { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
#hcpl-modal[data-light="on"] .hcpl-st-card.hcpl-current { background: rgba(184,134,46,0.08); border-color: rgba(184,134,46,0.4); }
#hcpl-modal[data-light="on"] .hcpl-st-time { background: rgba(184,134,46,0.2); color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-st-place { color: #0a1814; }
#hcpl-modal[data-light="on"] .hcpl-st-place-ar { color: rgba(0,0,0,0.65); }
#hcpl-modal[data-light="on"] .hcpl-st-btn.hcpl-maps { background: rgba(37,99,235,0.18); color: #1d4ed8; }
#hcpl-modal[data-light="on"] .hcpl-st-btn.hcpl-done-btn { background: rgba(16,185,129,0.2); color: #047857; }
#hcpl-modal[data-light="on"] .hcpl-st-btn.hcpl-done-btn.hcpl-active { background: #047857; color: #fff; }
#hcpl-modal[data-light="on"] .hcpl-st-shortdesc { color: rgba(0,0,0,0.7); }
#hcpl-modal[data-light="on"] .hcpl-st-detail { border-color: rgba(0,0,0,0.08); }
#hcpl-modal[data-light="on"] .hcpl-st-block { background: rgba(124,58,237,0.08); border-left-color: #7c3aed; }
#hcpl-modal[data-light="on"] .hcpl-st-block-title { color: #6d28d9; }
#hcpl-modal[data-light="on"] .hcpl-st-block-list { color: rgba(0,0,0,0.85); }

/* Du'as */
#hcpl-modal[data-light="on"] .hcpl-dua-toggle { background: rgba(184,134,46,0.12); border-color: rgba(184,134,46,0.4); color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-dua-list { background: rgba(0,0,0,0.04); }
#hcpl-modal[data-light="on"] .hcpl-dua-item { border-color: rgba(0,0,0,0.06); }
#hcpl-modal[data-light="on"] .hcpl-dua-title { color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-dua-ar { color: #0a1814; }
#hcpl-modal[data-light="on"] .hcpl-dua-tl { color: rgba(0,0,0,0.65); }
#hcpl-modal[data-light="on"] .hcpl-dua-de { color: rgba(0,0,0,0.85); }

/* Transport */
#hcpl-modal[data-light="on"] .hcpl-st-transport { background: rgba(37,99,235,0.08); color: rgba(0,0,0,0.75); }

/* Station-CTA */
#hcpl-modal[data-light="on"] .hcpl-st-cta-btn.hcpl-maps-cta { background: rgba(37,99,235,0.18); color: #1d4ed8; }
#hcpl-modal[data-light="on"] .hcpl-st-cta-btn.hcpl-info { background: rgba(124,58,237,0.18); color: #6d28d9; }
#hcpl-modal[data-light="on"] .hcpl-st-cta-btn.hcpl-done-cta { background: rgba(16,185,129,0.2); color: #047857; }
#hcpl-modal[data-light="on"] .hcpl-st-cta-btn.hcpl-done-cta.hcpl-active { background: #047857; color: #fff; }

/* Settings */
#hcpl-modal[data-light="on"] .hcpl-settings-section { border-color: rgba(0,0,0,0.08); }
#hcpl-modal[data-light="on"] .hcpl-settings-title { color: rgba(0,0,0,0.55); }
#hcpl-modal[data-light="on"] .hcpl-settings-row { color: #1f2d28; }
#hcpl-modal[data-light="on"] .hcpl-toggle { background: rgba(0,0,0,0.18); }
#hcpl-modal[data-light="on"] .hcpl-toggle.hcpl-on { background: #2d946a; }
#hcpl-modal[data-light="on"] .hcpl-seg-opt { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: #1f2d28; }
#hcpl-modal[data-light="on"] .hcpl-seg-opt.hcpl-active { background: rgba(45,148,106,0.18); border-color: rgba(45,148,106,0.55); color: #2d946a; }
#hcpl-modal[data-light="on"] .hcpl-lang-select { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.15); color: #1f2d28; }
#hcpl-modal[data-light="on"] .hcpl-stat-gold { color: #8b6321; }
#hcpl-modal[data-light="on"] .hcpl-stat-emerald { color: #047857; }
#hcpl-modal[data-light="on"] .hcpl-state { color: rgba(0,0,0,0.6); }

@media (max-width: 360px) {
  .hcpl-route-card { padding: 10px; }
  .hcpl-st-card { padding: 8px 10px; }
}
