/* Fonte pixelada retrô */
body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background-color: #ffe6f0;
  color: #7c4d64;
  animation: fadeIn 1.5s ease;
}

/* Animação de entrada */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

header {
  text-align: center;
  padding: 50px 20px 20px;
  background-color: #ffd6eb;
  border-bottom: 3px dashed #ffb6d9;
}

h1 {
  color: #ff66b2;
  font-size: 24px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 12px;
  color: #a85e87;
}

.cats {
  text-align: center;
  padding: 30px;
  background-color: #fff0f5;
  border-top: 3px dotted #ffb6d9;
  border-bottom: 3px dotted #ffb6d9;
}

.cats img {
  width: 100px;
  margin: 0 10px;
  image-rendering: pixelated;
  transition: transform 0.3s ease;
}

.cats img:hover {
  transform: scale(1.1) rotate(2deg);
}

.content {
  max-width: 700px;
  margin: 40px auto;
  background: #ffe6f7;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ffb6d9;
}

.content h2 {
  color: #ff66b2;
  font-size: 16px;
  margin-bottom: 10px;
}

.content p,
.content ul {
  font-size: 12px;
  line-height: 1.8;
}

a {
  color: #d94f8c;
  text-decoration: none;
  border-bottom: 1px dotted #d94f8c;
}

a:hover {
  color: #ff1493;
  background-color: #ffe6f0;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 10px;
  background-color: #ffd6eb;
  margin-top: 30px;
  border-top: 3px dashed #ffb6d9;
}

/* Scrollbar cor-de-rosa */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fff0f5;
}
::-webkit-scrollbar-thumb {
  background: #ffb6d9;
  border-radius: 4px;
}
#playMusic {
  margin-top: 15px;
  background-color: #ffb6d9;
  border: none;
  padding: 10px 20px;
  font-size: 10px;
  font-family: 'Press Start 2P', cursive;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px #d48aad;
  transition: all 0.2s ease;
}

#playMusic:hover {
  background-color: #ff91c5;
  transform: scale(1.05);
}
