html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  color: white;
  background: black;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ff00cc, #3333ff, #00ffcc, #ffcc00);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 0 20px;
}

.content h1 {
  font-size: 5rem;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite ease-in-out;
}

.content p {
  margin-top: 30px;
  font-size: 1.5rem;
  opacity: 0.85;
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.footer a {
  margin: 0 15px;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.2s, color 0.3s;
}

.footer a:hover {
  transform: scale(1.3);
  color: #00ffcc;
}

.footer i {
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}