/* ============================ LIVE FEED PAGE ============================ */

.live-body { background: var(--bg); }

.live-main {
  padding: 64px 0 96px;
}

.live-header {
  text-align: center;
  margin-bottom: 40px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 160, 67, 0.12);
  color: #4ade80;
  border: 1px solid rgba(46, 160, 67, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.live-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.live-header h1 {
  font-size: 44px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.live-header .lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.live-meta {
  font-size: 13px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.live-meta .dot { opacity: 0.5; }
.live-meta a { color: var(--accent-bright); text-decoration: none; }
.live-meta a:hover { text-decoration: underline; }

/* ----- Feed table ----- */
.feed-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 56px;
  max-width: 1080px;
}
.feed-head,
.feed-row {
  display: grid;
  grid-template-columns: 90px 80px minmax(0, 1.3fr) minmax(0, 1.4fr) minmax(0, 1fr) 32px;
  gap: 16px;
  padding: 12px 20px;
  font-size: 13.5px;
  align-items: center;
}
.feed-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.feed-row {
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.feed-row:hover { background: rgba(124, 92, 255, 0.05); }
.feed-row:last-child { border-bottom: none; }
.feed-row .col { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-row .col-time { color: var(--text-dim); font-variant-numeric: tabular-nums; }
.feed-row .col-issuer { color: var(--text-muted); }
.feed-row .col-insider { color: var(--text); }
.feed-row .col-role { color: var(--text-dim); font-size: 12.5px; }
.feed-row .col-link { color: var(--text-dim); text-align: right; }
.feed-row:hover .col-link { color: var(--accent-bright); }
.feed-row .tick {
  display: inline-block;
  background: rgba(124, 92, 255, 0.12);
  color: var(--accent-bright);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
}

/* Highlight new rows */
.feed-row.is-new {
  animation: flash-in 1.6s ease-out;
}
@keyframes flash-in {
  0%   { background: rgba(124, 92, 255, 0.2); }
  100% { background: transparent; }
}

.feed-loading {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}

/* ----- CTA bottom ----- */
.live-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 0;
  border-top: 1px solid var(--border);
}
.live-cta h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}
.live-cta p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Active nav ----- */
.nav-links a.active { color: var(--accent-bright); }

/* ----- Responsive ----- */
@media (max-width: 760px) {
  .feed-head,
  .feed-row {
    grid-template-columns: 60px 70px minmax(0, 1.4fr) minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 12px 14px;
    font-size: 12.5px;
  }
  .col-role { display: none; }
  .live-header h1 { font-size: 32px; }
}
