/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte moderna */
body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  height: 100vh;
  color: #eaeaea;

  /* Fundo com GIF */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("displaygif.gif") center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container central */
.container {
  text-align: center;
  padding: 40px 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Título */
.container h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}


.container .desc {
    font-size: 1rem;
    color: #8c7fa7;
    margin-bottom: 32px;
}

.container .desc b {
    animation: pulseGlow 2.8s ease-in-out infinite;
}

/* Lista */
.container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Links */
.container a {
  display: block;
  padding: 14px 28px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.03);
}

/* Hover elegante */
.container a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #9f7aea;
  animation:
    typing 1.8s steps(16, end),
    blink 0.8s step-end infinite;
}

/* Animação de digitação */
@keyframes typing {
  from { width: 0; }
  to { width: 16ch; }
}

/* Cursor piscando */
@keyframes blink {
  50% { border-color: transparent; }
}

/* Pulsar com brilho */
@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    text-shadow: 0 0 0 rgba(159, 122, 234, 0);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 6px rgba(159, 122, 234, 0.6);
  }
  100% {
    opacity: 0.6;
    text-shadow: 0 0 0 rgba(159, 122, 234, 0);
  }
}

