@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Press Start 2P', cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: auto;
}

.container {
  text-align: center;
  animation: flicker 2s infinite alternate;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 1rem;
}

.title-card {
  text-align: start;
}

.title {
  font-size: 2rem;
  color: #ff004d;
  text-shadow: 2px 2px #000000;
  animation: glitch 1s infinite;
}

.subtitle {
  font-size: 1rem;
  color: #00eaff;
  margin: 0;
}

.filo {
  font-size: 1rem;
  color: #00eaff;
  margin: 20px 0;
  animation: float 2s ease-in-out infinite;
}

.button {
  display: inline-block;
  background: #00ff00;
  color: #000;
  padding: 10px 20px;
  border: 4px solid #ffffff;
  text-decoration: none;
  animation: blink 2s steps(2, start) infinite;
  box-shadow: 0 0 8px #00ff00;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: scale(1.1);
  background: #ffffff;
  color: #00ff00;
  border-color: #00ff00;
}

/* Animations */
@keyframes glitch {
  0% {
    text-shadow: 2px 2px #ff00c8, -2px -2px #00fff9;
  }
  50% {
    text-shadow: -2px 2px #ff00c8, 2px -2px #00fff9;
  }
  100% {
    text-shadow: 2px -2px #ff00c8, -2px 2px #00fff9;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes flicker {
  0% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.95;
  }
}
