/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* FUNDO BORRADO */
body {
  min-height: 100vh;
  color: #fff;
  background: #000;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("wallpaper2.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  opacity: 0.4;
  z-index: -1;
}

/* BANNER */
.banner {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-text {
  background: rgba(0, 0, 0, 0.45);
  padding: 30px 50px;
  border-radius: 18px;
}

.banner h1 {
  font-size: 3rem;
}

.banner p {
  margin-top: 10px;
  font-weight: 300;
}

/* MENU */
nav {
  background: #181818;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.ativo {
  color: #f059cf;
}

/* CONTEÚDO */
.conteudo {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.conteudo h2 {
  margin-bottom: 30px;
}

/* ÁLBUM */
.album {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 25px;
}

/* CABEÇALHO DO ÁLBUM */
.album-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.album-header img {
  width: 72px;
  height: 72px;
  object-fit: contain; /* NÃO CORTA */
  background: #000;
  border-radius: 10px;
}

.album-info h3 {
  font-size: 1.5rem;
}

.album-info p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* TRACKLIST */
.tracklist {
  display: flex;
  flex-direction: column;
}

.track {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}

.track:hover {
  background: #262626;
}

.track-num {
  opacity: 0.6;
  text-align: right;
}

.track-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* FOOTER */
footer {
  background: #181818;
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  opacity: 0.9;
}
.album-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

#timer {
  font-size: 0.8rem;
  opacity: 0.8;
}
/* FAIXA INDISPONÍVEL */
.track.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.track.disabled:hover {
  background: transparent;
}

.unavailable {
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-left: 8px;
}

.track.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.lancado {
  color: #00ff88;
  font-weight: 700;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}
.track.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.lancado {
  color: #00ff88;
  font-weight: 700;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* HADES */
.hades-box {
  text-align: center;
  max-width: 500px;
  margin: 40px auto;
}

.hades-box img {
  width: 100%;
  border-radius: 12px;
}

.btn-ouvir {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #f046cb;
  border-radius: 8px;
  text-decoration: none;
  color: white;
}

.btn-ouvir:hover {
  background: #f135b3;
}

/* BOTÃO PLAY */
#botaoPlay {
  position: fixed;
  bottom: 20px;
  left: 20px;

  width: 65px;
  height: 65px;

  cursor: pointer;
  z-index: 999;

  transition: 0.3s;
}

#botaoPlay:hover {
  transform: scale(1.15);
}

/* FORÇAR TEXOS DOS CARDS EM BRANCO */
.video-card a {
  color: #fff;
  text-decoration: none;
}

.video-card a:visited {
  color: #fff;
}

.video-card a:hover {
  color: #fff;
}