#pause-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 200;
  flex-direction: column;
}

#pause-menu.active {
  display: flex;
}

#pause-panel {
  background: linear-gradient(135deg, #0d1f30 0%, #1a3040 100%);
  border: 2px solid #00ccff;
  border-radius: 12px;
  padding: 40px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#pause-panel h2 {
  font-size: 28px;
  color: #00ffcc;
  margin-bottom: 10px;
  text-align: center;
}

#pause-panel .menu-btn {
  width: 280px;
  padding: 15px 30px;
  margin: 5px;
  font-size: 18px;
  font-family: inherit;
  background: linear-gradient(135deg, #0d1f30 0%, #1a3040 100%);
  color: #00ccff;
  border: 1px solid #00ccff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

#pause-panel .menu-btn:hover {
  background: #00ccff;
  color: #000;
  box-shadow: 0 0 20px #00ccff;
}

#pause-panel .menu-btn.secondary {
  background: transparent;
  border-color: #3a5a6a;
  color: #5a8a9a;
}

#pause-panel .menu-btn.secondary:hover {
  border-color: #00ccff;
  color: #00ccff;
  background: rgba(0,204,255,0.1);
}

#pause-panel .menu-btn.danger {
  border-color: #ff4466;
  color: #ff4466;
}

#pause-panel .menu-btn.danger:hover {
  background: #ff4466;
  color: #000;
  box-shadow: 0 0 20px #ff4466;
}

