/* ============================================================
   Platform overrides / additions on top of Claude Design CSS.
   Do NOT edit theme.css / dango-styles.css / auth-styles.css —
   put all integration-specific tweaks here.
   ============================================================ */

/* Inline form error under auth inputs */
.auth-error {
  background: rgba(248, 81, 73, 0.08);
  border: 1px solid rgba(248, 81, 73, 0.3);
  color: #F85149;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--db-font-mono);
  font-size: 11px;
  margin: 10px 0 6px;
  letter-spacing: 0.02em;
}

/* Read-only mode badge in dashboard topbar (replaces interactive toggle) */
.tb-mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--db-green-dim);
  border-radius: 999px;
  font-family: var(--db-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--db-green);
  background: rgba(63, 185, 80, 0.06);
  cursor: default;
  user-select: none;
}
.tb-mode-badge .mode-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--db-green);
  box-shadow: 0 0 6px var(--db-green);
  animation: dbPulse 1.6s ease-in-out infinite;
}
@keyframes dbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.25); }
}

/* User chip click affordance + sign out hover */
.user-chip { cursor: pointer; }
.user-chip:hover { opacity: 0.85; }

/* Sidebar sign-out variant */
.side-item#sidebarSignOut {
  margin-top: 4px;
  color: var(--db-text-dim);
}
.side-item#sidebarSignOut:hover {
  color: var(--db-text);
}

/* Silent refresh: suppress ONLY the reveal/fade-in animations so auto-refresh doesn't flash.
   Ambient animations (alien pulse, dot pulse, breathing logo, etc.) keep running. */
.no-anim .rv,
.no-anim .revealable {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   RESPONSIVE / MOBILE
   Breakpoints: 1024px (tablet) · 640px (mobile)
   ============================================================ */

/* ============================================================
   NOTIFICATION BELL + DROPDOWN
   ============================================================ */
.notif-wrap { position: relative; }

.notif-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--db-green);
  color: #052e0a;
  font-family: var(--db-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(63, 185, 80, 0.5);
}

.notif-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 340px;
  max-height: 420px;
  background: var(--db-panel-solid);
  border: 1px solid var(--db-border);
  border-radius: var(--db-radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 50;
}
.notif-panel.on { display: flex; animation: notifDrop 0.18s var(--db-ease, ease) both; }
@keyframes notifDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.notif-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--db-border);
  font-family: var(--db-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--db-text);
  text-transform: uppercase;
}
.notif-clear {
  background: none; border: none; cursor: pointer;
  color: var(--db-green);
  font-family: var(--db-font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.notif-clear:hover { text-decoration: underline; }

.notif-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}

.notif-item {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  line-height: 1.5;
  color: var(--db-text-dim);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { background: rgba(63, 185, 80, 0.04); }
.notif-item .ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-size: 12px;
}
.notif-item .ico.trade { background: rgba(63, 185, 80, 0.12); color: var(--db-green); }
.notif-item .ico.open { background: rgba(88, 166, 255, 0.12); color: var(--db-blue); }
.notif-item .ico.nav { background: rgba(63, 185, 80, 0.12); color: var(--db-green); }
.notif-item .ico.withdrawal { background: rgba(255, 255, 255, 0.04); color: var(--db-text); }
.notif-item .body { flex: 1; min-width: 0; }
.notif-item .text { color: var(--db-text); }
.notif-item .time {
  font-family: var(--db-font-mono);
  font-size: 9px;
  color: var(--db-text-faint);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.notif-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--db-text-faint);
  font-family: var(--db-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Hamburger button (shown on mobile/tablet, hidden on desktop) */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  width: 40px;
  height: 40px;
  background: var(--db-panel-solid);
  border: 1px solid var(--db-border);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--db-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.mobile-menu-btn:hover { border-color: var(--db-green-dim); color: var(--db-green); }

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sidebar-backdrop.on {
  display: block;
  opacity: 1;
}

/* ---------- Tablet portrait (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .shell { grid-template-columns: 180px 1fr; }
  .main { padding: 14px 20px 60px; }

  .topbar { gap: 10px; padding: 10px 14px; flex-wrap: wrap; }
  .tb-stat { padding: 3px 8px; font-size: 10px; }
  .tb-stat .lbl { font-size: 9px; }

  .kpi-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .hero-main { flex-direction: column; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .section-row { grid-template-columns: 1fr !important; }
  .action-layout { grid-template-columns: 1fr !important; }

  .triple { flex-wrap: wrap; gap: 12px !important; }
  .triple-item.big .num { font-size: 32px !important; }
  .triple-item.mid .num { font-size: 22px !important; }

  /* Tables scroll horizontally instead of breaking the layout */
  .lots-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* 🔧 APR 25: Activar hamburger desde tablet portrait (768px) — no esperar a 640px.
   El sidebar 180px de tablet es demasiado angosto para los items, mejor drawer. */
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }

  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 260px;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.25s var(--db-ease, ease);
    z-index: 30;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }
  .shell.sidebar-open .sidebar { transform: translateX(0); }

  .main { padding: 68px 14px 60px; }

  /* Topbar dense pero legible */
  .topbar {
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 12px;
    margin-bottom: 14px;
    align-items: center;
  }
  .tb-stat { padding: 3px 7px; font-size: 10px; }
  .tb-stat .sparkline { display: none; }
  .tb-divider { display: none; }
  .tb-spacer { display: none; }
  .tb-icon-btn { padding: 4px 6px; }
  .user-chip { padding: 3px 8px; font-size: 10px; }
  .user-chip .avatar { width: 22px; height: 22px; font-size: 9px; }
  .user-chip span { max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* ---------- Mobile (≤ 640px) ---------- */
@media (max-width: 640px) {
  .kpi-grid { grid-template-columns: 1fr !important; }
  .kpi-cell { padding: 14px 16px; }
  .kpi-val { font-size: 22px !important; }

  .hero { padding: 18px !important; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .triple { justify-content: flex-start; gap: 10px !important; }
  .triple-item.big .num { font-size: 26px !important; }
  .triple-item.mid .num { font-size: 18px !important; }
  .triple-sep { font-size: 16px !important; }

  /* Action forms (buy/redeem/reinvest) stack */
  .action-layout { gap: 12px; }
  .amount-input input { font-size: 26px !important; }
  .amount-quick { flex-wrap: wrap; }
  .quick-btn { flex: 1 1 30%; font-size: 11px !important; }

  /* Live widget — smaller on mobile so it doesn't cover content */
  .live-widget {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
  }

  /* Page head */
  h1 { font-size: 24px !important; }
  .page-head { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Edu banner tight */
  .edu-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px !important; }

  /* Transaction row tighter */
  .tx-row { padding: 10px 14px !important; gap: 10px !important; }
  .tx-date { display: none; }

  /* Esconder switcher label in mobile (solo flag visible) */
  .lang-switcher button { padding: 5px 8px; font-size: 10px; }
  .lang-switcher-caret { display: none; }
}

/* ---------- Mobile pequeño (≤ 380px, iPhone SE / Mini) ---------- */
@media (max-width: 380px) {
  .topbar { padding: 6px 10px; gap: 5px; }
  .tb-stat { padding: 2px 6px; font-size: 9px; }
  .tb-stat .lbl { display: none; }  /* Solo valor, sin label */
  .tb-stat .val { font-size: 11px; }
  .tb-mode-badge { padding: 3px 6px; font-size: 9px; }
  .tb-mode-badge span:not(.mode-dot) { font-size: 9px; }
  .user-chip span { max-width: 70px; }

  /* Compact hero */
  .hero-meta { gap: 10px; }
  .hero-meta-val { font-size: 13px !important; }
  .hero-meta-lbl { font-size: 9px; }

  /* Buttons more touch-friendly */
  .big-btn { padding: 12px 14px !important; font-size: 13px; }
}

/* ---------- Mobile admin (the admin panel has its own grid) ---------- */
@media (max-width: 900px) {
  .ad-shell { grid-template-columns: 1fr !important; }
  .ad-side {
    position: fixed; left: 0; top: 0;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 30;
  }
  .ad-shell.sidebar-open .ad-side { transform: translateX(0); }
}

/* ============================================================
   🔧 APR 25: BOT ACTIVITY HERO — premium financial-terminal feel
   ============================================================ */
.bot-hero {
  position: relative;
  border: 1px solid rgba(63,185,80,0.3);
  border-radius: 14px;
  padding: 26px 30px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #0a0e14;
  box-shadow:
    0 0 0 1px rgba(63,185,80,0.05) inset,
    0 20px 60px -20px rgba(63,185,80,0.25),
    0 4px 24px rgba(0,0,0,0.4);
}
.bot-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 15% -20%, rgba(63,185,80,0.18), transparent 60%),
    radial-gradient(ellipse 600px 300px at 85% 120%, rgba(88,166,255,0.10), transparent 60%),
    linear-gradient(180deg, #0d1218 0%, #0a0e14 100%);
  z-index: 0;
}
.bot-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(63,185,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,185,80,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
  z-index: 0;
  animation: heroGridDrift 12s linear infinite;
}
@keyframes heroGridDrift {
  to { background-position: 32px 32px, 32px 32px; }
}
.bot-hero-content { position: relative; z-index: 1; }

.bot-hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; margin-bottom: 18px;
}
.bot-hero-status {
  display: flex; align-items: center; gap: 18px;
}
.bot-hero-pulse {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.bot-hero-pulse-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--db-green);
  box-shadow: 0 0 16px rgba(63,185,80,0.7);
  position: relative; z-index: 2;
}
.bot-hero-pulse.off .bot-hero-pulse-dot {
  background: #F85149;
  box-shadow: 0 0 16px rgba(248,81,73,0.5);
}
.bot-hero-pulse-ring {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(63,185,80,0.5);
  animation: heroPulseRing 2.4s ease-out infinite;
}
.bot-hero-pulse-ring.d2 { animation-delay: 1.2s; }
.bot-hero-pulse.off .bot-hero-pulse-ring { border-color: rgba(248,81,73,0.4); }
@keyframes heroPulseRing {
  0%   { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.bot-hero-title {
  font-size: 22px; font-weight: 600; color: var(--db-text);
  letter-spacing: -0.01em; line-height: 1.2;
}
.bot-hero-sub {
  font-size: 13px; color: var(--db-text-dim); margin-top: 4px;
  letter-spacing: 0;
}
.bot-hero-clock-block {
  text-align: right; min-width: 130px;
}
.bot-hero-clock-lbl {
  font-family: var(--db-font-mono); font-size: 9px;
  color: var(--db-text-faint); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 4px;
}
.bot-hero-clock-val {
  font-family: var(--db-font-mono); font-size: 18px;
  color: var(--db-green); font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(63,185,80,0.4);
}

/* Live ticker */
.bot-hero-ticker {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: rgba(63,185,80,0.05);
  border: 1px solid rgba(63,185,80,0.15);
  border-radius: 8px;
  margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.bot-hero-ticker::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(63,185,80,0.06), transparent);
  animation: tickerScan 4s linear infinite;
}
@keyframes tickerScan { to { left: 100%; } }
.bot-hero-ticker-icon {
  color: var(--db-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bot-hero-ticker-icon svg { animation: heartbeat 1.5s ease-in-out infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}
.bot-hero-ticker-text {
  font-family: var(--db-font-mono); font-size: 12px;
  color: var(--db-text-dim); letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
  flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Bottom stats grid (pill-row) */
.bot-hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bot-hero-stat {
  display: flex; flex-direction: column; gap: 4px;
}
.bot-hero-stat-lbl {
  font-family: var(--db-font-mono); font-size: 9px;
  color: var(--db-text-faint); letter-spacing: 0.16em;
}
.bot-hero-stat-val {
  font-size: 16px; font-weight: 600; color: var(--db-text);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .bot-hero { padding: 20px 18px; border-radius: 12px; }
  .bot-hero-top { flex-direction: column; gap: 14px; }
  .bot-hero-status { gap: 14px; }
  .bot-hero-pulse { width: 36px; height: 36px; }
  .bot-hero-pulse-dot { width: 11px; height: 11px; }
  .bot-hero-title { font-size: 17px; }
  .bot-hero-sub { font-size: 12px; }
  .bot-hero-clock-block { text-align: left; min-width: 0; }
  .bot-hero-clock-val { font-size: 16px; }
  .bot-hero-ticker-text { font-size: 11px; }
  .bot-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .bot-hero-stat-val { font-size: 14px; }
}
@media (max-width: 380px) {
  .bot-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Trust cards: validated strategies + risk controls */
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.trust-card {
  background: rgba(16, 22, 31, 0.7);
  border: 1px solid var(--db-border);
  border-radius: 10px;
  padding: 18px 20px;
  position: relative;
  transition: 0.25s;
}
.trust-card:hover {
  border-color: rgba(63,185,80,0.25);
  background: rgba(16, 22, 31, 0.85);
}
.trust-card-head {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.trust-card-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.trust-card-icon.strat {
  background: rgba(63,185,80,0.1);
  border: 1px solid rgba(63,185,80,0.3);
  color: var(--db-green);
}
.trust-card-icon.risk {
  background: rgba(88,166,255,0.08);
  border: 1px solid rgba(88,166,255,0.3);
  color: var(--db-blue);
}
.trust-card-title {
  font-size: 14px; font-weight: 600; color: var(--db-text);
  letter-spacing: -0.005em;
}
.trust-card-sub {
  font-size: 11px; color: var(--db-text-faint);
  margin-top: 2px;
}
.trust-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.trust-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--db-text-dim);
  line-height: 1.4;
}
.trust-check {
  color: var(--db-green);
  font-weight: 700;
  flex-shrink: 0;
  display: inline-flex; width: 16px; height: 16px;
  align-items: center; justify-content: center;
  background: rgba(63,185,80,0.12);
  border-radius: 4px; font-size: 10px;
}
.trust-stat {
  margin-left: auto; font-family: var(--db-font-mono);
  font-size: 10px; color: var(--db-text-faint);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .trust-row { grid-template-columns: 1fr; gap: 12px; }
  .trust-card { padding: 14px 16px; }
}

/* ============================================================
   Legacy bot-live-banner (mantener por compatibilidad)
   ============================================================ */
.bot-live-banner {
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, rgba(63,185,80,0.06) 0%, rgba(16,22,31,0.8) 100%);
  border: 1px solid rgba(63,185,80,0.25);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.bot-live-banner::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63,185,80,0.6), transparent);
  animation: blbScan 3s linear infinite;
}
@keyframes blbScan { to { left: 100%; } }
.blb-left { display: flex; align-items: center; gap: 14px; }
.blb-pulse {
  width: 12px; height: 12px; border-radius: 50%;
  position: relative;
  background: var(--db-text-faint);
}
.blb-pulse.on {
  background: var(--db-green);
  box-shadow: 0 0 0 0 rgba(63,185,80,0.6);
  animation: blbPulse 1.6s ease-out infinite;
}
.blb-pulse.off { background: #F85149; }
@keyframes blbPulse {
  0%   { box-shadow: 0 0 0 0 rgba(63,185,80,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(63,185,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,185,80,0); }
}
.blb-title {
  font-size: 16px; font-weight: 600; color: var(--db-text);
  letter-spacing: 0.01em;
}
.blb-sub {
  font-size: 12px; color: var(--db-text-dim); margin-top: 2px;
}
.blb-right { display: flex; gap: 28px; }
.blb-stat { text-align: right; }
.blb-stat-lbl {
  font-family: var(--db-font-mono); font-size: 9px;
  color: var(--db-text-faint); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 3px;
}
.blb-stat-val {
  font-size: 14px; color: var(--db-text); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.blb-stat-val.mono { font-family: var(--db-font-mono); font-size: 13px; }

/* Symbol grid — chips con scanning */
.sym-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 8px;
  padding: 4px 0;
}
.sym-chip {
  font-family: var(--db-font-mono);
  font-size: 11px; font-weight: 600;
  padding: 8px 6px; text-align: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--db-border);
  border-radius: 6px;
  color: var(--db-text-dim);
  letter-spacing: 0.04em;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(4px);
  animation: symIn 0.3s ease-out forwards;
}
@keyframes symIn { to { opacity: 1; transform: translateY(0); } }
.sym-chip::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(63,185,80,0.08), transparent);
  animation: symScan 4s linear infinite;
  animation-delay: var(--scan-delay, 0s);
}
@keyframes symScan { to { left: 100%; } }
.sym-chip--active {
  color: var(--db-green);
  background: rgba(63,185,80,0.08);
  border-color: rgba(63,185,80,0.4);
  box-shadow: 0 0 12px rgba(63,185,80,0.15);
}

/* Dot pulse para pills */
.db-pill .dot-pulse {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  margin-right: 4px;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Mobile bot live banner */
@media (max-width: 768px) {
  .bot-live-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }
  .blb-right {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .blb-stat { text-align: left; }
  .blb-title { font-size: 15px; }
  .blb-sub { font-size: 11px; }
  .blb-stat-val { font-size: 12px; }
  .sym-grid {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 6px;
  }
  .sym-chip { font-size: 10px; padding: 6px 4px; }
}
