body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

.intro-container {
  position: relative;
  animation: fadeIn 2s ease-in-out forwards;
}

h1, h2, p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s ease forwards;
}

h1 {
  font-size: 2.5rem;
  color: #00e5ff;
  text-shadow: 0 0 10px #00e5ff;
  animation-delay: 0s;
}

#logoVideo {
  width: 70%;
  max-width: 800px;
  opacity: 0;
  margin: 2rem 0;
  animation: fadeUp 2s ease forwards 3s;
}

h2 {
  color: #ffcc00;
  text-shadow: 0 0 8px #ffcc00;
  animation-delay: 5s;
}

#projects p {
  font-size: 1.2rem;
  margin: 0.4rem 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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