body {
  margin: 0;
  padding: 0;
  background: url("https://i.imgur.com/Mz2F5Hh.gif");
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Gloria Hallelujah', cursive;
  color: #fff;
  text-align: center;
  cursor: url("https://cur.cursors-4u.net/cursors/cur-11/cur1045.ani"), auto;
}

/* Cabeçalho */
header {
  padding: 20px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 25px;
  margin: 20px;
  box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

header h1 {
  font-family: 'Rubik Bubbles', cursive;
  font-size: 3.5em;
  color: #fff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ffcc00;
  margin: 0;
  animation: sparkle 3s infinite;
}

/* Menu */
nav {
  margin: 15px 0;
}

nav a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fad390);
  border-radius: 25px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Pacifico', cursive;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

nav a:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 0 15px #fff;
}

/* Conteúdo principal */
main {
  margin: 30px auto;
  max-width: 900px;
  padding: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.card {
  margin: 20px auto;
  padding: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 25px;
  text-align: left;
  color: #fff;
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 1.2em;
  line-height: 1.6;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Títulos */
h2 {
  font-family: 'Pacifico', cursive;
  color: #ffec99;
  text-shadow: 0 0 8px #000;
}

@keyframes sparkle {
  0% { text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff; }
  50% { text-shadow: 0 0 20px #00ffcc, 0 0 30px #ffcc00; }
  100% { text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff; }
}

/* Rodapé */
footer {
  margin: 40px 0 80px;
  font-size: 0.9em;
  opacity: 0.9;
}

/* Player Winamp */
.winamp {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 320px;
  background: #1e1e1e;
  border: 2px solid #444;
  box-shadow: 0 0 15px #00ffea;
  border-radius: 5px;
  font-family: monospace;
  color: #0f0;
  z-index: 1000;
}

.winamp-header {
  background: linear-gradient(90deg, #0047ab, #1e90ff);
  padding: 5px;
  font-size: 14px;
  color: #fff;
  text-align: left;
}

.winamp-display {
  background: #000;
  color: #0f0;
  padding: 5px;
  font-size: 13px;
  text-align: left;
  font-family: "Courier New", monospace;
}

.winamp-controls {
  display: flex;
  justify-content: center;
  padding: 5px;
  background: #2a2a2a;
}

.winamp-controls button {
  background: #444;
  color: #fff;
  border: 1px solid #666;
  border-radius: 3px;
  margin: 0 3px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
}

.winamp-controls button:hover {
  background: #00ffea;
  color: #000;
}

/* Playlist visível */
.winamp-playlist {
  background: #111;
  color: #0f0;
  font-size: 12px;
  text-align: left;
  max-height: 120px;
  overflow-y: auto;
  border-top: 1px solid #333;
}

.winamp-playlist div {
  padding: 4px 6px;
  cursor: pointer;
  border-bottom: 1px dotted #333;
}

.winamp-playlist div:hover {
  background: #0f0;
  color: #000;
}

.winamp-playlist .active {
  background: #00ffea;
  color: #000;
  font-weight: bold;
}

.winamp audio {
  display: none;
}