.wwc-mkt {
  background: #0b1f3a;
  border: 1px solid #1e3a5f;
  border-radius: 0.5rem;
  padding: 0.75rem 0.9rem 0.55rem;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  color: #f8fafc;
  overflow: hidden;
}
.wwc-mkt__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.wwc-mkt__title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.wwc-mkt__live {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #4ade80;
}
.wwc-mkt__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #4ade80;
  animation: wwc-mkt-pulse 1.1s ease-in-out infinite;
}
@keyframes wwc-mkt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}
.wwc-mkt__viewport {
  max-height: 15rem;
  overflow: hidden;
  position: relative;
}
.wwc-mkt__list { list-style: none; margin: 0; padding: 0; }
.wwc-mkt__ticker { animation: wwc-mkt-scroll 32s linear infinite; }
.wwc-mkt__viewport:hover .wwc-mkt__ticker { animation-play-state: paused; }
@keyframes wwc-mkt-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.wwc-mkt__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  transition: background 0.35s ease;
}
.wwc-mkt__row:first-child { border-top: 0; }
.wwc-mkt__row.is-flash { animation: wwc-mkt-flash 0.85s ease; }
@keyframes wwc-mkt-flash {
  0% { background: rgba(74, 222, 128, 0.18); }
  100% { background: transparent; }
}
.wwc-mkt__row--down.is-flash { animation-name: wwc-mkt-flash-down; }
@keyframes wwc-mkt-flash-down {
  0% { background: rgba(248, 113, 113, 0.22); }
  100% { background: transparent; }
}
.wwc-mkt__name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.wwc-mkt__market {
  display: block;
  font-size: 0.6875rem;
  color: #94a3b8;
}
.wwc-mkt__nums { text-align: right; flex-shrink: 0; }
.wwc-mkt__last {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}
.wwc-mkt__last.is-bump { animation: wwc-mkt-bump 0.55s ease; }
@keyframes wwc-mkt-bump {
  0% { transform: translateY(0.25rem); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}
.wwc-mkt__chg {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.wwc-mkt__row--up .wwc-mkt__chg { color: #4ade80; }
.wwc-mkt__row--down .wwc-mkt__chg { color: #f87171; }
.wwc-mkt__row--flat .wwc-mkt__chg { color: #94a3b8; }
.wwc-mkt__foot {
  margin: 0.45rem 0 0;
  font-size: 0.625rem;
  color: #64748b;
}
.wwc-mkt.is-updating { opacity: 0.92; }
.home-top-aside .wwc-mkt,
.home-after-top-story .wwc-mkt { margin-bottom: 1rem; }
