body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.container {
  padding: 20px;
  max-width: 500px;
  margin: auto;
  background: #4b0000;
}

.logo {
  width: 170px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 14px;
  margin: 10px 0 20px;
  color: #f5f54a;
}

.banner {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ff0000;
}

.buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #f54a4a;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn i {
  font-size: 20px;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.gold {
  background: linear-gradient(180deg, #fbff00, #ffb300);
  color: #000;
}

.btn.black {
  background: linear-gradient(180deg, #0095ff, #002a6b);
  border-color: #0095ff;
}

footer {
  margin-top: 30px;
  font-size: 12px;
  color: #ffffff;
}