body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom right, #0f0c29, #302b63, #24243e);
  color: #f0f0f0;
  text-align: center;
  overflow-x: hidden;
}

header {
  padding: 3em 1em 1em;
}

.logo {
  max-width: 250px;
  margin-bottom: 1.5em;
}

.banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 2em;
  border-top: 4px solid #f0f0f0;
  border-bottom: 4px solid #f0f0f0;
}

.radio-player {
  margin-top: 2em;
}

.container {
  padding: 1em;
  max-width: 900px;
  margin: auto;
}

.location {
  font-size: 1.2em;
  margin-top: 1em;
  color: #c7bfe5;
}

audio {
  margin-top: 1em;
  width: 300px;
}

.clock {
  font-size: 1.3em;
  margin-top: 10px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.slogan-rotativo {
  font-size: 1rem;
  margin: 1em 0;
  color: #ffccff;
  min-height: 1.5em;
}

#visualizer {
  width: 100%;
  height: 100px;
  background: black;
  margin-top: 20px;
}

.weather-widget {
  margin-top: 20px;
  color: #ffccff;
  font-size: 1em;
  text-shadow: 0 0 5px #ffccff;
}

footer {
  margin-top: 3em;
  font-size: 0.9em;
  color: #999;
}

nav.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  padding: 10px;
  z-index: 999;
}

nav.menu a {
  color: #00fff7;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 8px #00fff7;
}

/* Seção de Recomendação de Álbuns */
#recomendacoes {
  margin-top: 3em;
  text-align: left;
}

#recomendacoes h2 {
  text-align: center;
  margin-bottom: 1em;
  color: #ffccff;
  text-shadow: 0 0 10px #ffccff;
}

.album {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1.5em;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1em;
  border-radius: 12px;
  box-shadow: 0 0 10px #00fff7;
}

.album img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 5px #00fff7;
}

.album p {
  margin: 0;
  font-size: 1.1em;
  color: #f0f0f0;
}

.album a {
  color: #00fff7;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  text-shadow: 0 0 5px #00fff7;
  transition: 0.2s ease;
}

.album a:hover {
  text-decoration: underline;
  color: #ffccff;
}

/* 🔊 Notificação da faixa tocando */
#notificacao-musica {
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #00fff7;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 15px rgba(0, 255, 247, 0.5);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.8s ease;
  text-align: center;
}

#notificacao-musica.show {
  opacity: 1;
}
