:root{
  --verde: #0f6f54;
  --negro: #0b0b0b;
  --marron: #7a5c2e;
  --texto: #d2d2d2;
  --dorado: #c9a43a;
}

/* Reset básico */
*{
  box-sizing: border-box;
  margin:0;
  padding:0;
}

/* BODY y layout */
body{
  font-family: 'Georgia', serif;
  background-color: var(--negro);
  color: var(--dorado);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:24px;
}

/* Título */
h1{
  font-size:48px;
  margin-top:12px;
  margin-bottom:10px;
  color: var(--dorado);
  text-align:center;
}

/* (ELIMINADO: estilos del botón de música) */

/* Audio centro (controles nativos) */
.audio-centro{
  width:100%;
  display:flex;
  justify-content:center;
  margin: 10px 0 18px 0;
}
audio{
  width:320px;
}

/* Favorito */
.favorito{
  width:100%;
  max-width:940px;
  background: var(--negro);
  border: 3px solid var(--dorado);
  border-radius:12px;
  padding:18px;
  color: var(--texto);
  margin: 16px 0;
  text-align:justify;
}
.favorito img{
  width:150px;
  height:150px;
  object-fit:cover;
  float:left;
  margin-right:14px;
  border-radius:8px;
  border:2px solid var(--dorado);
}

/* Curiosidades - contenedor */
.curiosidades-container{
  width:90%;
  max-width:1000px;
  margin:20px auto;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap:14px;
  background: var(--verde);
  padding:12px;
  border-radius:10px;
}

/* Cada curiosidad */
.curiosidad{
  background: var(--negro);
  border:2px solid var(--dorado);
  padding:12px;
  display:flex;
  gap:10px;
  align-items:center;
  border-radius:8px;
  color:var(--texto);
}
.curiosidad img{
  width:76px;
  height:76px;
  object-fit:cover;
  border-radius:6px;
}

/* Videos */
.videos-wrapper{
  width:90%;
  max-width:1000px;
  margin:20px auto;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}
.video-card{
  width:400px;
  background: var(--negro);
  border:2px solid var(--dorado);
  padding:12px;
  border-radius:8px;
}
.video-card video{
  width:100%;
  height:auto;
  border-radius:6px;
}

/* Footer */
/* --- BOTONES DEL FOOTER --- */

footer {
  width: 100%;
  margin-top: 20px;
  padding: 16px 0 30px 0;
  text-align: center;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.boton-caja {
  text-decoration: none;
  padding: 10px 16px;
  background: var(--marron);     /* marrón suave */
  color: white;
  border: 2px solid var(--dorado);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s ease-in-out; /* Solo cambio de color suave */
}

.boton-caja:hover {
  background: var(--verde);      /* verde Slytherin */
  color: white;
  border-color: var(--dorado);
}


/* Responsive simple */
@media (max-width:700px){
  .favorito img{
    width:120px;
    height:120px;
    margin-bottom:8px;
    float:none;
    display:block;
  }
  .videos-wrapper{
    gap:12px;
  }
  .video-card{
    width:100%;
    max-width:420px;
  }
}
