@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Roboto:wght@300;400&display=swap');

body {
  margin: 0;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeLogo 2s ease-in forwards;
}

.title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 0;
}

.subtitle {
  font-weight: 300;
  margin: 8px 0 18px;
  color: #b0b0b0;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.manifesto {
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #ddd;
}

.launch {
  font-size: 1.1rem;
  margin-bottom: 40px;
  animation: pulse 2s infinite;
}

footer {
  font-size: 0.85rem;
  color: #777;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLogo {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.6; transform: scale(1); }
}

@media (max-width: 600px) {
  .title { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
  .manifesto { font-size: 0.95rem; }
  .logo { width: 100px; }
}
