body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(135deg, #1E2A38, #243447);
  color: white;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero img {
  width: 140px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.version {
  margin-top: 1rem;
  opacity: 0.7;
}

.actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: #2EC4B6;
  color: #0B3C3A;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}