@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #0d1b2a;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.hero {
  text-align: center;
  color: #ffffff;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 130px;
  margin-bottom: 20px;
  animation: scaleUp 1.5s ease-in-out;
}

.brand-name {
  font-size: 48px;
  color: #00aaff;
  margin: 0;
  animation: slideIn 2s ease-in-out;
}

.brand-name span {
  color: #ffaa00;
}

.tagline {
  font-size: 20px;
  color: #ffffffcc;
  margin-top: 10px;
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleUp {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}
