body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #000000, #8b0000);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.menu {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.menu-btn {
  padding: 12px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #330000;
  color: white;
  transition: background 0.3s, transform 0.2s;
}

.menu-btn:hover {
  background: #b30000;
  transform: scale(1.05);
}

.screen {
  padding: 15px;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  min-height: 80px;
}