.crash-history {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  min-height: 48px;
}

.crash-history-pill {
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0,180,255,0.15);
  color: var(--accent);
}

.crash-history-pill.low { color: var(--danger); background: rgba(248,113,113,0.15); }
.crash-history-pill.high { color: #fbbf24; background: rgba(251,191,36,0.15); }

.crash-graph-wrap {
  position: relative;
  height: 320px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(0,180,255,0.25);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.crash-graph-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.crash-mult-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0,200,255,0.6);
  pointer-events: none;
}

.crash-mult-display.crashed {
  color: var(--danger);
  text-shadow: 0 0 40px rgba(248,113,113,0.5);
}

.crash-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  background: rgba(8,18,40,0.95);
  border: 1px solid rgba(0,180,255,0.3);
  border-radius: 14px;
  padding: 1.25rem;
}

.crash-controls .control-block label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

@media (max-width: 900px) {
  .crash-controls { grid-template-columns: 1fr; }
}
