#screen-press-start {
  background: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.blink-text {
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  margin: 0;
}

.counter-wrap {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.counter {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  letter-spacing: 0.25em;
  color: #ff3b3b;
  text-shadow: 0 0 6px rgba(255, 59, 59, 0.7);
}

.global-mute-toggle {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  background: none;
  border: none;
  padding: 0.3rem;
}

.pixel-speaker {
  width: clamp(38px, 6.4vw, 54px);
  height: auto;
  aspect-ratio: 28 / 20;
  color: #ffd23f;
  filter: drop-shadow(0 0 5px rgba(255, 210, 63, 0.7));
}

.global-mute-toggle.muted .pixel-speaker {
  color: #444;
  filter: none;
}

.win-banner {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.win-banner.visible {
  display: flex;
}

.win-text {
  margin: 0;
  color: #ffd700;
  font-size: clamp(0.75rem, 2.3vw, 1.2rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 2px 2px 0 #000;
}

.pixel-trophy {
  width: clamp(48px, 9vw, 72px);
  height: auto;
  aspect-ratio: 24 / 24;
  color: #ffd700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.hud-left {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hp-hearts {
  display: flex;
  gap: 0.3rem;
}

.pixel-heart {
  width: clamp(14px, 2.2vw, 20px);
  height: auto;
  aspect-ratio: 16 / 12;
}

.pixel-heart.full {
  color: #ff3b3b;
  filter: drop-shadow(0 0 3px rgba(255, 59, 59, 0.7));
}

.pixel-heart.empty {
  color: #3a1a1a;
}

.lives {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  letter-spacing: 0.1em;
  color: #ffd23f;
  text-shadow: 0 0 6px rgba(255, 210, 63, 0.6);
}
