/* Box Stacking Game Styles */
#score-hud {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.screen[data-screen="gameover"] {
  background: rgba(10, 8, 20, 0.85);
  backdrop-filter: blur(8px);
}

.score-badge {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd152;
  margin: 0.5rem 0;
  text-shadow: 0 4px 12px rgba(255, 209, 82, 0.4);
}

.stat-line {
  color: #a5a0c8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
