.breakout-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: var(--color-surface);
}

.breakout-header {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--color-bg);
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.breakout-score {
  color: var(--color-text);
}

.breakout-high {
  color: var(--color-text-secondary);
}

.breakout-canvas {
  flex: 1;
  width: 100%;
  border-radius: 4px;
  display: block;
}

.breakout-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 12px;
}

.breakout-btn {
  padding: 8px 20px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.breakout-btn:hover {
  background: var(--color-primary-hover);
}

.breakout-hint {
  color: var(--color-text-secondary);
  font-size: 12px;
}
