/* ========== START MENU (Updated) ========== */
.start-menu {
  position: fixed;
  bottom: 50px;
  left: 10px;
  min-width: 250px;
  background: #1f1f1f;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  z-index: 1000;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  visibility: hidden;
}

/* .start-menu-inner,
.start-footer {
  width: 100%;
} */


.start-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background: #2a2a2a;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.app-entry:hover {
  background: #3a3a3a;
}

.app-entry i {
  width: 20px;
  text-align: center;
}

.start-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2b2b2b;
  padding: 8px 10px;
  border-top: 1px solid #444;
}

.profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile i {
  font-size: 20px;
}

.footer-icons i {
  font-size: 16px;
  margin-left: 14px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.start-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}