body {
  margin: 2dvh;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 96dvh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center; 
  margin: 6px;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.hero {
  text-align: center;
  background: rgba(255,255,255,0.08);
  padding: 1rem 1.5rem 3rem 1.5rem;
  border-radius: 16px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 0 25px rgba(138,43,226,0.3);
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  color: #a3e4ff;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin-bottom: 2rem;
}

.hero a {
  background: linear-gradient(90deg, #6a5acd, #00ced1);
  color: white;
  text-decoration: none;
  padding: 0.8em 1.8rem;
  border-radius: 50px;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}

.hero a:hover {
  box-shadow: 0 0 20px #a3e4ff;
}

footer p {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}

footer a {
  color: #999;
}