@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* ✨ Animações suaves */
@keyframes fadeIn {
/* ... (sem alterações) ... */
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
/* ... (sem alterações) ... */
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

body {
/* ... (sem alterações) ... */
  background-color: #ffffeb;
  color: #333;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0; /* O padding agora vai no <main> */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Garante que o body ocupe pelo menos a altura da tela */
  animation: fadeIn 1.2s ease-in-out;
}

/* Cria as faixas de segurança no topo e fundo */
body::before,
body::after {
/* ... (sem alterações) ... */
  content: "";
  display: block;
  width: 100%;
  height: 80px; /* altura das faixas — pode ajustar */
  background: repeating-linear-gradient(
    45deg,
    #000 0 20px,
    #ffde59 20px 40px
  );
  position: fixed; /* Fixa as faixas na tela */
  left: 0;
  z-index: 10; /* Garante que fiquem por cima de tudo */
}

body::before {
/* ... (sem alterações) ... */
  top: 0; /* Faixa do topo */
}

body::after {
/* ... (sem alterações) ... */
  bottom: 0; /* Faixa do fundo */
}

/* Conteúdo principal */
main {
/* ... (sem alterações) ... */
  flex: 1; /* Faz o main ocupar o espaço disponível entre as faixas */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative; /* Necessário para z-index funcionar (embora não seja crítico aqui) */
  z-index: 2;
  
  /* Este padding cria o "respiro" e impede que o conteúdo fique atrás das faixas fixas */
  padding: 110px 20px; /* 80px da faixa + 30px de respiro */
  box-sizing: border-box; /* Garante que o padding seja calculado corretamente */
  width: 100%;
}

/* Estilo para o vídeo, similar ao que você tinha para <img> */
.pikachu-video {
/* ... (sem alterações) ... */
  width: 500px;
  max-width: 90%;
  height: auto;
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}

/* Estilos de texto e links (mantidos como estavam) */
h1 {
/* ... (sem alterações) ... */
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
  letter-spacing: 0.5px;
}

p {
/* ... (sem alterações) ... */
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #444;
}

a {
  text-decoration: none;
  color: #ffffeb;
  background-color: #ed1c2e;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

a:hover {
  color: #ed1c2e;
  background-color: #ffffeb;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

ul {
/* ... (sem alterações) ... */
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

/* Estilo para os links de redes sociais (botões) */
ul a {
  text-decoration: none;
  color: #ffffeb;
  background-color: #ed1c2e;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

ul a:hover {
  color: #ed1c2e;
  background-color: #ffffeb;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* NOVO: Estilo para o link de atribuição */
.attribution {
  font-size: 0.8rem;
  color: #555;
  margin-top: -5px; /* Puxa para mais perto do H1 */
  margin-bottom: 25px;
}

.attribution a {

  text-decoration: none;
  color: #ffffeb;
  background-color: #ed1c2e;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;

}

.attribution a:hover {
  color: #ed1c2e;
  background-color: #ffffeb;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

}

