/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(180, 100%, 5%); /* preto */
  color: hsl(0, 0%, 100%);
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column; /* organiza tudo em coluna */
  align-items: center;    /* centraliza horizontalmente */
  justify-content: center;
  min-height: 100vh;
}

/* Card central */
.card {
  background-color: hsl(0, 0%, 0%); /* bege */
  border: 2px solid hsl(222, 100%, 50%);
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  text-align: center;
  margin-bottom: 30px;
}

/* Imagem */
.card-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Título */
.card-title {
  font-size: 18px;
  color: hsl(0, 0%, 98%);
  margin-bottom: 10px;
}

/* Player */
.card-player {
  width: 100%;
}

/* Barra preta */
.barra {
  width: 100%;
  background-color: hsl(226, 100%, 50%);
  padding: 10px 0;
}

/* Texto dentro da barra */
.rodape {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin: 0;
}

/* Texto explicativo */
.descricao {
  margin-top: 20px;
  text-align: center;
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
}
