/* ── SPACE ROCKS: spielspezifisch ── */
main {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 30px;
}

.score-bar { max-width: 560px; margin-bottom: 14px; }

/* Alle Boxen gleich hoch, Inhalt zentriert */
.score-box {
  padding: 7px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 58px;
}

.score-box span { font-size: 1.6rem; text-shadow: 0 0 16px rgba(0,245,255,0.4); }
.overlay { background: rgba(6,8,18,0.80); }

/* Overlay-Icon als Bild */
.overlay-icon img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(0,255,136,0.5));
}
