* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

h1.animated {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.subtext {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff; }
  50% { text-shadow: 0 0 20px #0ff, 0 0 30px #0ff; }
}
