body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #ffd700;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

.logo {
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.buttons button {
  width: 220px;
  padding: 15px;
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  background: #ffd700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #000;
  transition: 0.2s;
}

.buttons button:hover {
  background: #e6c200;
}
