/* menu-container */
.menu-container {
  position: fixed;
  top: calc(80px + 12px);
  left: 24px;
  width: 240px;
  padding: 0;
  display: block;
  text-transform: uppercase;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
}

.whitespace {
  display: none;
}

.menu-items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  background: rgba(19, 20, 22, 0.96);
  border-radius: 12px;
  padding: 0.75em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item {
  position: relative;
  width: 100%;
  padding: 0.85em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(42, 42, 42, 0.85);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.menu-item span:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

.menu-item span:last-child {
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
}

.menu-item:hover {
  background: #e60012;
  transform: translateX(6px);
}

.menu-item:hover span {
  color: #fff;
}

@media (max-width: 900px) {
  .menu-container {
    left: 16px;
    width: calc(100% - 32px);
    top: calc(60px + 12px);
  }

  .menu-items {
    padding: 0.75em;
    gap: 0.4em;
  }

  .menu-item {
    padding: 0.8em 0.9em;
  }
}
