body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: url("background.png");
  background-repeat: repeat;
  background-size: 250px 250px; /* <-- Ajuste aqui: repete mais vezes */
  animation: scrollBackground 30s linear infinite;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 1000px; /* <-- movimento diagonal */
  }
}

.card {
  background-color: white;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
  border-radius: 25px;
  border: 4px solid black;
  padding: 20px;
}

.logo {
  width: 200px;
  margin-bottom: 10px;
}

.character {
  width: 200px;
  margin: 20px 0;
}

.links img {
  width: 32px;
  margin: 5px;
}

.faq-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  border: 2px solid #00bfff;
  text-decoration: none;
  color: #00bfff;
  font-weight: bold;
}

/* Estilo personalizado do botão tipo "inventory" */
.card .inventory-btn {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  border: 3px solid white;
}

.card .inventory-btn:hover {
  transform: scale(1.05);
  background-color: #222;
}
