/* Sharelusion · Live module */

#live .stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.btc-price-tile {
  border-color: rgba(255, 138, 0, 0.30);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 138, 0, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(20, 17, 12, 0.98), rgba(8, 8, 8, 0.98));
}

.btc-price-tile .stat-value {
  color: var(--orange);
}

.btc-price-tile.is-error .stat-value {
  color: var(--muted);
  font-size: 20px;
}

@media (min-width: 900px) {
  #live .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  }
}
