body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}

.hidden { display: none; }

#menu {
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.cover {
  width: 20%;
  max-width: 500px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

button {
  background: rgba(255,255,255,0.85);
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: white;
  transform: scale(1.05);
}
