body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: white;
  background: linear-gradient(135deg, #ff6600, #000000);
  overflow-x: hidden;
}

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  animation: fadeInBackground 3s ease-in-out forwards;
}

.content h1 {
  font-size: 5rem;
  margin: 0;
  animation: slideDown 1.5s ease-out;
}

.content p {
  font-size: 1.5rem;
  margin: 20px 0;
  animation: slideUp 1.5s ease-out;
}

.download-button {
  text-decoration: none;
  background: white;
  color: #ff6600;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: fadeIn 2s ease-in-out;
}

.download-button:hover {
  transform: scale(1.1);
  background: #ff6600;
  color: black;
}

.spacer {
  height: 100px;
}

.features {
  padding: 50px;
  background: rgba(0, 0, 0, 0.85);
  border-top: 4px solid #ff6600;
  animation: fadeIn 2s ease-in-out;
}

.features h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
}

.features ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.features li {
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.features li:hover {
  transform: scale(1.05);
  color: #ff6600;
}

/* Animations */
@keyframes fadeInBackground {
  0% { opacity: 0; background-position: top left; }
  100% { opacity: 1; background-position: center; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* Add this to the .content h1 after slideDown */

.content h1.fadeOut {
  animation: fadeOut 1s forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.5s;
}

.fade-in.delay-2 {
  animation-delay: 1s;
}

.slide-in {
  transform: translateX(-100px);
  opacity: 0;
  animation: slideIn 1s forwards;
}

.slide-in.delay-1 { animation-delay: 0.3s; }
.slide-in.delay-2 { animation-delay: 0.6s; }
.slide-in.delay-3 { animation-delay: 0.9s; }

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
