.prediction-market-volume-visualization {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  margin: 0 0 1.45rem;
  text-align: left;
}

.prediction-market-volume-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.case-markdown .prediction-market-volume-title,
.case-markdown .prediction-market-volume-meta,
.case-markdown .prediction-market-volume-tooltip-parent,
.case-markdown .prediction-market-volume-tooltip-heading,
.prediction-market-volume-tooltip-parent,
.prediction-market-volume-tooltip-heading {
  margin: 0;
}

.prediction-market-volume-title {
  flex: 0 0 auto;
  order: 2;
  min-width: 0;
  margin-left: auto;
  color: var(--color-text-secondary);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.prediction-market-volume-controls {
  display: flex;
  order: 1;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

.prediction-market-volume-filter {
  display: inline-flex;
  min-height: 1.9rem;
  align-items: center;
  padding: 0 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-text-secondary);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color var(--ease),
    border-color var(--ease),
    color var(--ease),
    box-shadow var(--ease);
  user-select: none;
}

.prediction-market-volume-filter:hover {
  background: var(--color-bg-control-muted);
  color: var(--color-text-primary);
}

.prediction-market-volume-filter:focus-visible {
  outline: var(--focus-ring-width) solid var(--color-focus-ring);
  outline-offset: 2px;
}

.prediction-market-volume-filter.is-active {
  border-color: var(--color-border-subtle);
  background: var(--color-bg-surface-strong);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-elevation-nav-active);
}

.prediction-market-volume-filter-label {
  min-width: 0;
}

.prediction-market-volume-chart {
  position: relative;
  width: 100%;
  height: clamp(24rem, 52vw, 34rem);
  min-height: 22rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  outline: var(--focus-ring-width) solid transparent;
  outline-offset: 0.45rem;
  background: transparent;
  transition: outline-color var(--ease);
}

.prediction-market-volume-chart:focus-visible {
  outline-color: var(--color-focus-ring);
}

.prediction-market-volume-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.prediction-market-volume-category,
.prediction-market-volume-cell {
  outline: none;
  cursor: pointer;
}

.prediction-market-volume-category-shell {
  opacity: 0.07;
  stroke: transparent;
  stroke-width: 0;
  transition:
    opacity var(--ease),
    stroke var(--ease);
}

.prediction-market-volume-category-label {
  fill: var(--color-text-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
}

.prediction-market-volume-cell-rect {
  opacity: 0.44;
  stroke: transparent;
  stroke-width: 0;
  filter: brightness(1.18) saturate(0.58);
  transition:
    filter var(--ease),
    opacity var(--ease),
    stroke var(--ease);
}

.prediction-market-volume-cell.is-section-active .prediction-market-volume-cell-rect,
.prediction-market-volume-cell:hover .prediction-market-volume-cell-rect,
.prediction-market-volume-cell.is-active .prediction-market-volume-cell-rect,
.prediction-market-volume-cell:focus-visible .prediction-market-volume-cell-rect {
  opacity: 1;
  filter: brightness(1.03) saturate(1.05);
  stroke: transparent;
}

.prediction-market-volume-category.is-section-active .prediction-market-volume-category-shell,
.prediction-market-volume-category:hover .prediction-market-volume-category-shell,
.prediction-market-volume-category.is-active .prediction-market-volume-category-shell,
.prediction-market-volume-category:focus-visible
  .prediction-market-volume-category-shell {
  opacity: 0.2;
  stroke: transparent;
}

.prediction-market-volume-label {
  font-family: inherit;
  letter-spacing: 0;
  pointer-events: none;
}

.prediction-market-volume-label-main {
  fill: rgba(31, 29, 27, 0.68);
  font-size: 12px;
  font-weight: 800;
  transition: fill var(--ease);
}

.prediction-market-volume-label-meta {
  fill: rgba(31, 29, 27, 0.52);
  font-size: 11px;
  font-weight: 700;
  transition: fill var(--ease);
}

.prediction-market-volume-cell.is-section-active .prediction-market-volume-label-main,
.prediction-market-volume-cell:hover .prediction-market-volume-label-main,
.prediction-market-volume-cell.is-active .prediction-market-volume-label-main,
.prediction-market-volume-cell:focus-visible .prediction-market-volume-label-main {
  fill: rgba(255, 255, 255, 0.95);
}

.prediction-market-volume-cell.is-section-active .prediction-market-volume-label-meta,
.prediction-market-volume-cell:hover .prediction-market-volume-label-meta,
.prediction-market-volume-cell.is-active .prediction-market-volume-label-meta,
.prediction-market-volume-cell:focus-visible .prediction-market-volume-label-meta {
  fill: rgba(255, 255, 255, 0.76);
}

.prediction-market-volume-tooltip {
  position: fixed;
  z-index: 60;
  display: grid;
  width: max-content;
  gap: 0.42rem;
  padding: 0.72rem 0.78rem;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(35, 35, 34, 0.9),
      rgba(9, 9, 9, 0.82)
    ),
    rgba(0, 0, 0, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 12px));
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
}

.prediction-market-volume-tooltip.is-visible {
  opacity: 1;
}

.prediction-market-volume-tooltip.is-below {
  transform: translate(-50%, 12px);
}

.prediction-market-volume-tooltip-parent {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.18;
}

.prediction-market-volume-tooltip-emoji-line {
  display: block;
  line-height: 1;
}

.prediction-market-volume-tooltip-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.18;
}

.prediction-market-volume-tooltip-emoji {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.prediction-market-volume-tooltip-title {
  min-width: 0;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.prediction-market-volume-tooltip-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.42rem;
}

.prediction-market-volume-tooltip-metric {
  display: grid;
  min-width: 0;
  gap: 0.08rem;
}

.prediction-market-volume-tooltip-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
}

.prediction-market-volume-tooltip-value {
  min-width: 0;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.prediction-market-volume-tooltip-metric[data-volume-tooltip-metric="volume"] {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.38rem;
  align-items: baseline;
}

.prediction-market-volume-tooltip-metric[data-volume-tooltip-metric="volume"]
  .prediction-market-volume-tooltip-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.1;
}

.prediction-market-volume-tooltip-metric[data-volume-tooltip-metric="volume"]
  .prediction-market-volume-tooltip-value {
  color: var(--prediction-market-volume-tooltip-accent, #77dd77);
  font-size: 2.12rem;
  font-weight: 700;
  line-height: 1;
}

.prediction-market-volume-tooltip-metric[data-volume-tooltip-metric^="share"]
 {
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.2;
}

.prediction-market-volume-tooltip-metric[data-volume-tooltip-metric^="share"]
  .prediction-market-volume-tooltip-label,
.prediction-market-volume-tooltip-metric[data-volume-tooltip-metric^="share"]
  .prediction-market-volume-tooltip-value {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.2;
}

.prediction-market-volume-meta {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  line-height: 1.45;
}

.prediction-market-volume-meta.a11y-composite-widget {
  --a11y-composite-focus-radius: var(--radius-sm);
  --focus-ring-offset: 0.26rem;
}

.prediction-market-volume-meta a {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.prediction-market-volume-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.prediction-market-context-visualization {
  display: grid;
  width: 100%;
  gap: 0.9rem;
  margin: 0 0 1.45rem;
  text-align: left;
}

.world-cup-impact-kpi {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 15rem);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.6rem, 4.5vw, 3.3rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 18%, rgba(30, 166, 114, 0.34), transparent 34%),
    linear-gradient(135deg, #252523 0%, #111110 62%, #080808 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 48px rgba(18, 18, 16, 0.18);
  color: var(--color-text-inverse);
  text-align: left;
}

.world-cup-impact-kpi-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: clamp(1.25rem, 2.6vw, 1.8rem);
}

.world-cup-impact-kpi-number {
  color: #ffffff;
  font-family: var(--headline);
  font-size: clamp(5.4rem, 12vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.78;
  white-space: nowrap;
}

.world-cup-impact-kpi-copy {
  display: grid;
  min-width: 0;
  gap: 0.35rem;
}

.world-cup-impact-kpi-label {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--headline);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

.world-cup-impact-kpi-detail {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

.world-cup-impact-kpi-visual {
  --world-cup-flag-size: 1.35rem;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 15rem);
  aspect-ratio: 1;
  contain: layout;
  isolation: isolate;
  pointer-events: none;
  user-select: none;
}

.world-cup-flag-orbit-rings {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.72);
  transform-origin: center;
  transition:
    opacity 260ms ease,
    transform 260ms cubic-bezier(0.4, 0, 1, 1),
    visibility 0s linear 260ms;
}

.world-cup-impact-kpi-visual.is-orbit-ready.is-orbit-active
  .world-cup-flag-orbit-rings {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear;
}

.world-cup-flag-orbit-ring {
  --world-cup-orbit-duration: 34s;
  --world-cup-orbit-size: 88%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--world-cup-orbit-size);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: world-cup-orbit-spin var(--world-cup-orbit-duration) linear infinite;
  animation-play-state: paused;
}

.world-cup-flag-orbit-ring:nth-child(2) {
  --world-cup-orbit-duration: 43s;
  --world-cup-orbit-size: 122%;
  border-color: rgba(255, 255, 255, 0.07);
  animation-name: world-cup-orbit-spin-reverse;
}

.world-cup-flag-orbit-ring:nth-child(3) {
  --world-cup-orbit-duration: 52s;
  --world-cup-orbit-size: 168%;
  border-color: rgba(255, 255, 255, 0.05);
}

.world-cup-flag-orbit-slot {
  position: absolute;
  inset: 0;
  transform: rotate(var(--world-cup-flag-angle));
}

.world-cup-flag-orbit-position {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--world-cup-flag-size);
  height: var(--world-cup-flag-size);
  animation:
    world-cup-orbit-position-counter-spin
    var(--world-cup-orbit-duration)
    linear
    infinite;
  animation-play-state: paused;
}

.world-cup-flag-orbit-ring:nth-child(2)
  .world-cup-flag-orbit-position {
  animation-name: world-cup-orbit-position-counter-spin-reverse;
}

.world-cup-flag-orbit-flag {
  --world-cup-hover-scale: 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 50%;
  transform: scale(var(--world-cup-hover-scale));
  transition: transform 140ms cubic-bezier(0.22, 1, 0.36, 1);
}

.world-cup-impact-kpi-visual.is-orbit-active
  .world-cup-flag-orbit-flag {
  will-change: transform;
}

.world-cup-flag-orbit-flag-layer {
  position: absolute;
  display: grid;
  inset: 0.5px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.world-cup-flag-orbit-flag-layer.is-current {
  opacity: 1;
  transform: scale(1);
}

.world-cup-flag-orbit-flag-layer svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.world-cup-impact-kpi-visual.is-orbit-active
  .world-cup-flag-orbit-ring,
.world-cup-impact-kpi-visual.is-orbit-active
  .world-cup-flag-orbit-position {
  animation-play-state: running;
}

.world-cup-impact-kpi-logo {
  position: relative;
  z-index: 2;
  width: min(78%, 12.5rem);
  max-height: none;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36));
  transition: width 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.world-cup-impact-kpi-visual.is-orbit-ready
  .world-cup-impact-kpi-logo {
  width: 56%;
}

@keyframes world-cup-orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes world-cup-orbit-position-counter-spin {
  from {
    transform:
      translate(-50%, -50%)
      rotate(var(--world-cup-flag-counter-angle))
      rotate(0deg);
  }

  to {
    transform:
      translate(-50%, -50%)
      rotate(var(--world-cup-flag-counter-angle))
      rotate(-360deg);
  }
}

@keyframes world-cup-orbit-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes world-cup-orbit-position-counter-spin-reverse {
  from {
    transform:
      translate(-50%, -50%)
      rotate(var(--world-cup-flag-counter-angle))
      rotate(0deg);
  }

  to {
    transform:
      translate(-50%, -50%)
      rotate(var(--world-cup-flag-counter-angle))
      rotate(360deg);
  }
}

.world-cup-volume-visualization {
  display: grid;
  width: 100%;
  margin: 0 0 1.45rem;
  text-align: left;
}

.world-cup-volume-chart {
  position: relative;
  width: 100%;
  height: clamp(18rem, 35vw, 23rem);
  min-height: 18rem;
  overflow: visible;
}

.world-cup-volume-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.world-cup-volume-window {
  fill: rgba(30, 166, 114, 0.09);
}

.world-cup-volume-window-line {
  stroke: rgba(30, 166, 114, 0.42);
  stroke-dasharray: 3 4;
  stroke-width: 1;
}

.world-cup-volume-window-label {
  fill: #198b60;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.world-cup-volume-grid line {
  stroke: rgba(31, 29, 27, 0.08);
  stroke-width: 1;
}

.world-cup-volume-axis {
  color: rgba(31, 29, 27, 0.46);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
}

.world-cup-volume-axis text {
  fill: currentColor;
}

.world-cup-volume-axis .domain,
.world-cup-volume-axis line {
  stroke: transparent;
}

.world-cup-volume-bar {
  fill: rgba(31, 29, 27, 0.18);
}

.world-cup-volume-bar.is-world-cup {
  fill: #1ea672;
}

.case-markdown .prediction-market-context-tooltip-date,
.case-markdown .prediction-market-context-tooltip-metric,
.prediction-market-context-tooltip-date,
.prediction-market-context-tooltip-metric {
  margin: 0;
}

.prediction-market-context-chart {
  position: relative;
  width: 100%;
  height: clamp(15rem, 34vw, 22rem);
  min-height: 14rem;
  overflow: visible;
  border-radius: var(--radius-lg);
  outline: var(--focus-ring-width) solid transparent;
  outline-offset: 0.45rem;
  background: transparent;
  transition: outline-color var(--ease);
}

.prediction-market-context-chart:focus-visible {
  outline-color: var(--color-focus-ring);
}

.prediction-market-context-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.prediction-market-context-grid line {
  stroke: rgba(31, 29, 27, 0.08);
  stroke-width: 1;
}

.prediction-market-context-axis {
  color: rgba(31, 29, 27, 0.42);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.prediction-market-context-axis .domain {
  stroke: rgba(31, 29, 27, 0.14);
}

.prediction-market-context-axis line {
  stroke: rgba(31, 29, 27, 0.14);
}

.prediction-market-context-axis.is-bitcoin {
  color: rgba(247, 147, 26, 0.82);
}

.prediction-market-context-axis.is-volume {
  color: rgba(0, 82, 255, 0.78);
}

.prediction-market-context-axis-label {
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
}

.prediction-market-context-axis-label.is-bitcoin {
  fill: #f7931a;
}

.prediction-market-context-axis-label.is-volume {
  fill: #0052ff;
}

.prediction-market-context-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.prediction-market-context-line-bitcoin {
  stroke: #f7931a;
}

.prediction-market-context-bars {
  pointer-events: none;
}

.prediction-market-context-bar {
  fill: #0052ff;
  opacity: 0.28;
  shape-rendering: crispEdges;
  transition: opacity 140ms ease;
}

.prediction-market-context-bar.is-active {
  opacity: 1;
}

.prediction-market-context-endpoint {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 2;
}

.prediction-market-context-endpoint.is-bitcoin {
  fill: #f7931a;
}

.prediction-market-context-crosshair {
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.prediction-market-context-crosshair.is-visible {
  opacity: 1;
}

.prediction-market-context-crosshair-line {
  stroke: rgba(31, 29, 27, 0.24);
  stroke-dasharray: 4 5;
  stroke-width: 1;
}

.prediction-market-context-crosshair-dot {
  stroke: #1f1d1b;
  stroke-width: 2;
}

.prediction-market-context-crosshair-dot.is-bitcoin {
  fill: #f7931a;
}

.prediction-market-context-hit-area {
  cursor: crosshair;
  fill: transparent;
}

.prediction-market-context-tooltip {
  position: fixed;
  z-index: 60;
  display: grid;
  width: max-content;
  max-width: min(19rem, calc(100% - 1rem));
  gap: 0.48rem;
  padding: 0.68rem 0.78rem;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(35, 35, 34, 0.9),
      rgba(9, 9, 9, 0.82)
    ),
    rgba(0, 0, 0, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 10px));
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
}

.prediction-market-context-tooltip.is-visible {
  opacity: 1;
}

.prediction-market-context-tooltip-date {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.prediction-market-context-tooltip-metrics {
  display: grid;
  gap: 0.38rem;
}

.prediction-market-context-tooltip-metric {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
  min-width: 13rem;
  line-height: 1.2;
}

.prediction-market-context-tooltip-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 650;
}

.prediction-market-context-tooltip-value {
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.prediction-market-context-tooltip-value.is-bitcoin {
  color: #f7931a;
}

.prediction-market-context-tooltip-value.is-volume {
  color: #8fabff;
}

.case-markdown > .prediction-market-praise-carousel {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 720px) {
  .prediction-market-volume-header {
    gap: 0.5rem;
  }

  .prediction-market-volume-controls {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  .prediction-market-volume-chart {
    height: 28rem;
  }

  .prediction-market-context-chart {
    height: 18rem;
  }

  .world-cup-impact-kpi {
    grid-template-columns: minmax(0, 1fr) minmax(0, 9rem);
    gap: 0.9rem;
  }

  .world-cup-impact-kpi-visual {
    --world-cup-flag-size: 1.05rem;
    width: min(100%, 9rem);
  }

  .world-cup-flag-orbit-ring:nth-child(1) {
    --world-cup-orbit-size: 102%;
  }

  .world-cup-flag-orbit-ring:nth-child(2) {
    --world-cup-orbit-size: 158%;
  }

  .world-cup-impact-kpi-visual.is-orbit-ready
    .world-cup-impact-kpi-logo {
    width: 54%;
  }

  .world-cup-volume-chart {
    height: 19rem;
  }
}

@media (max-width: 430px) {
  .prediction-market-volume-chart {
    height: 30rem;
  }

  .prediction-market-context-chart {
    height: 19rem;
  }

  .prediction-market-context-axis {
    font-size: 0.68rem;
  }

  .world-cup-impact-kpi {
    grid-template-columns: minmax(0, 1fr) minmax(0, 7rem);
    gap: 0.65rem;
    padding: 1.45rem;
    border-radius: var(--radius-md);
  }

  .world-cup-impact-kpi-number {
    font-size: clamp(4.7rem, 22vw, 5.7rem);
  }

  .world-cup-impact-kpi-label {
    font-size: 1.05rem;
  }

  .world-cup-impact-kpi-visual {
    --world-cup-flag-size: 0.92rem;
    width: min(100%, 7rem);
    transform: translateX(1.65rem);
  }

  .world-cup-flag-orbit-ring:nth-child(1) {
    --world-cup-orbit-size: 144%;
  }

  .world-cup-impact-kpi-visual.is-orbit-ready
    .world-cup-impact-kpi-logo {
    width: 53%;
  }

  .world-cup-volume-chart {
    height: 18rem;
  }

  .world-cup-volume-axis {
    font-size: 0.64rem;
  }

  .prediction-market-context-tooltip-metric {
    min-width: 11rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .world-cup-impact-kpi-visual.is-orbit-ready
    .world-cup-flag-orbit-rings {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .world-cup-flag-orbit-ring,
  .world-cup-flag-orbit-position {
    animation: none;
  }

  .world-cup-flag-orbit-flag,
  .world-cup-flag-orbit-flag-layer,
  .world-cup-impact-kpi-logo {
    transition: none;
  }
}
