/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
}

/* GIF de fundo */
.glitch-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/Leche\ de\ Mipalo.gif');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.6; /* deixa mais discreto, ajusta como quiser */
}

/* Conteúdo por cima do fundo */
.content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.band-name {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 200;
  letter-spacing: 8px;
  text-transform: lowercase;
  margin-bottom: 2rem;
  word-break: break-word;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 3vw, 1.2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.link:hover {
  animation: flicker 1.2s linear infinite;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 4px #fff, 0 0 8px #ff004f;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.3;
    text-shadow: none;
  }
}
/* Responsivo */
@media (max-width: 768px) {
  .links {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 16px;
  }

  .links {
    flex-direction: column;
    gap: 1.2rem;
  }

  .band-name {
    margin-bottom: 1.5rem;
  }
}

.back-link {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: lowercase;
  font-size: 2rem;
}
.page-title {
  font-size: clamp(3rem, 8vw, 3.5rem);
  font-weight: 200;
  letter-spacing: 8px;
  text-transform: lowercase;
}

.musics {
  font-size: clamp(1rem, 8vw, 1rem);
  font-weight: 200;
  letter-spacing: 8px;
  text-transform: lowercase;
}
