/* ── Screens (menu / settings) ── */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  z-index: 100;
}

#screen-menu {
  overflow: hidden;
}

/* ── Menu container ── */
.menu-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Gem row ── */
.menu-gems {
  display: flex;
  gap: 10px;
  margin-bottom: 52px;
}

/* ── Navigation ── */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
