/* ═══════════════════════════════════════
   BTC Bottom Compass — Signal Pages CSS
   Supplements styles.css for compass pages
   ═══════════════════════════════════════ */

/* Signal status badge */
.signal-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.signal-status-badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
}
.signal-status-badge--green   { color: #1D9E75; border: 1px solid rgba(29,158,117,0.4); background: rgba(29,158,117,0.08); }
.signal-status-badge--green   .dot { background: #1D9E75; box-shadow: 0 0 12px rgba(29,158,117,0.5); }
.signal-status-badge--red     { color: #E24B4A; border: 1px solid rgba(226,75,74,0.4); background: rgba(226,75,74,0.08); }
.signal-status-badge--red     .dot { background: #E24B4A; box-shadow: 0 0 12px rgba(226,75,74,0.5); }
.signal-status-badge--neutral { color: #888780; border: 1px solid rgba(136,135,128,0.3); background: rgba(136,135,128,0.06); }
.signal-status-badge--neutral .dot { background: #888780; box-shadow: 0 0 8px rgba(136,135,128,0.4); }
.signal-status-badge--emerald { color: #5DCAA5; border: 1px solid rgba(93,202,165,0.4); background: rgba(93,202,165,0.08); }
.signal-status-badge--emerald .dot { background: #5DCAA5; box-shadow: 0 0 12px rgba(93,202,165,0.5); }

/* Signal large showcase (hero) */
.signal-showcase { text-align: center; padding: 12px 0 0; }
.signal-showcase__label {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.signal-showcase__label-en {
  font-size: 16px;
  font-weight: 500;
  color: #6a6f78;
  margin-bottom: 24px;
}
.signal-showcase__summary {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #8a8f98;
}

/* Bias bar */
.bias-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.bias-icon { font-size: 1.2rem; line-height: 1; }
.bias-bar--bullish         { color: #1D9E75; border: 1px solid rgba(29,158,117,0.3); background: rgba(29,158,117,0.06); }
.bias-bar--cautious_bullish { color: #5DCAA5; border: 1px solid rgba(93,202,165,0.3); background: rgba(93,202,165,0.06); }
.bias-bar--neutral         { color: #888780; border: 1px solid rgba(136,135,128,0.3); background: rgba(136,135,128,0.06); }
.bias-bar--cautious        { color: #EF9F27; border: 1px solid rgba(239,159,39,0.3); background: rgba(239,159,39,0.06); }
.bias-bar--risk_control    { color: #E24B4A; border: 1px solid rgba(226,75,74,0.3); background: rgba(226,75,74,0.06); }

/* Explanation list */
.explanation-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  counter-reset: explain;
}
.explanation-item {
  counter-increment: explain;
  padding: 18px 24px 18px 56px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.02);
  font-size: 14px;
  line-height: 1.7;
  color: #c8ccd4;
  transition: border-color 0.3s;
}
.explanation-item:hover { border-color: rgba(255,255,255,0.12); }
.explanation-item::before {
  content: counter(explain);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,212,255,0.08);
  color: #00d4ff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* Summary box */
.signal-summary-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  line-height: 1.8;
  color: #8a8f98;
}

/* Conclusion banner */
.conclusion-banner {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid #F7931A;
  background: rgba(247,147,26,0.04);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

/* Compass disclaimer */
.compass-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
  color: rgba(180,195,215,0.4);
  font-size: 13px;
  line-height: 1.8;
}

/* CTA block */
.compass-cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.compass-cta-block .cta-text {
  font-size: 15px;
  margin-bottom: 16px;
  color: #8a8f98;
}

/* Context tags */
.signal-ctx-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.signal-ctx-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,212,255,0.08);
  color: #00d4ff;
  border: 1px solid rgba(0,212,255,0.15);
}

/* Case narrative */
.case-narrative {
  font-size: 13px;
  line-height: 1.7;
  color: #6a6f78;
  margin-bottom: 18px;
}

/* Badge counter */
.badge-count {
  font-size: 12px; color: #6a6f78;
  font-weight: 400; margin-left: 6px;
}

/* Subscribe channel block */
.subscribe-channel {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  text-align: center;
}
.subscribe-channel h2 {
  border-left: none;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
  .signal-showcase__label { font-size: clamp(32px, 7vw, 48px); }
  .explanation-list { padding: 0 8px; }
  .detail-block { padding: 24px 18px; }
  .detail-block__reasons, .detail-block__watchlist { padding-left: 18px; }
}

/* ── Radar sweep icon for cautious bias ── */
.radar-icon { display: inline-block; vertical-align: middle; }
.radar-sweep {
  transform-origin: 12px 12px;
  animation: radar-spin 3s linear infinite;
}
@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Detail content blocks ── */
.detail-block {
  max-width: 700px;
  margin: 0 auto;
  padding: 28px 32px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.detail-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.detail-block__header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #e8e6e3;
  letter-spacing: 0.02em;
}
.detail-block__icon {
  flex-shrink: 0;
}
.detail-block__body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #8a8f98;
}
.detail-block__body p:last-child { margin-bottom: 0; }
.detail-block__reasons,
.detail-block__watchlist {
  margin: 0;
  padding-left: 22px;
  list-style: none;
}
.detail-block__reasons li,
.detail-block__watchlist li {
  position: relative;
  padding: 8px 0 8px 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #8a8f98;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-block__reasons li:last-child,
.detail-block__watchlist li:last-child { border-bottom: none; }
.detail-block__reasons li::before,
.detail-block__watchlist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.detail-block__reasons li::before {
  background: #00d4ff;
  box-shadow: 0 0 8px rgba(0,212,255,0.3);
}
.detail-block__watchlist li::before {
  background: #F7931A;
  box-shadow: 0 0 8px rgba(247,147,26,0.3);
}

/* Conclusion variant */
.detail-block--conclusion {
  border-left: 3px solid #F7931A;
  background: rgba(247,147,26,0.03);
}
.detail-block--conclusion .detail-block__body p {
  color: #c8ccd4;
  font-weight: 500;
}
