#screen-menu {
  position: absolute;
  inset: 0;
  background: #000;
}

.menu-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
}

.menu-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.2rem;
}

.cart-title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.1rem, 3.5vw, 1.8rem);
  color: #fff;
  text-shadow: 2px 2px 0 #000, 0 0 10px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.1em;
}

.game-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(90vw, 720px);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.game-list li {
  font-size: clamp(0.55rem, 1.6vw, 0.85rem);
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  touch-action: manipulation;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-list li.selected {
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  text-shadow: none;
}

.game-list li.empty {
  color: #ffd23f;
  text-align: center;
}

.mute-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.4rem 0.6rem;
  line-height: 1;
}

.mute-toggle.muted {
  opacity: 0.5;
}
