body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at center, #1a1200 0%, #000 100%);
  font-family: 'Times New Roman', serif;
  color: #d4af37;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gateway {
  margin-top: 8%;
}

.logo {
  width: 140px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #ffb300);
}

.title {
  font-size: 2.4em;
  font-weight: bold;
  margin: 0;
}

.subtitle {
  font-size: 1.4em;
  margin: 8px 0 25px;
}

.tagline {
  font-size: 1em;
  margin-bottom: 40px;
}

.buttons button {
  background: #d4af37;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  margin: 0 10px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
}

.buttons button:hover {
  background: #ffcc00;
  box-shadow: 0 0 20px #ffcc00;
}

.links {
  margin-top: 30px;
  font-size: 0.9em;
}

.links a {
  color: #d4af37;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

footer {
  font-size: 0.8em;
  color: #d4af37;
  margin-bottom: 15px;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
