body {
  background-color: #F0E6BF;
  color: black;
  font-family: Times, serif;
  background-image: url("np.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: black !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

img.no-border {
  border: none;
  border-radius: 0;
}

/* VIDEO CON ESQUINAS REDONDEADAS SIN BORDE NEGRO */
.video {
  position: relative;
  width: 100%;
  max-width: 500px;      /* desktop */
  aspect-ratio: 16 / 9; /* 500 x 281 aprox */
  margin: 2rem 0;
  border-radius: 18px;
  overflow: hidden;     /* CLAVE */
}

.video iframe {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 0;
}

.bandcamp-embed {
  width: 500px;
  height: 786px;
  border-radius: 20px; /* ajusta a gusto */
  overflow: hidden;
}

.bandcamp-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ajustes para móvil */
@media (max-width: 600px) {
  .bandcamp-embed {
    width: 100%;
    height: 600px; /* ajusta según cómo se vea */
    border-radius: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video {
    max-width: 100%;
  }
  
.bandcamp-track {
  width: 100%;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: transparent;
}

.bandcamp-track iframe {
  display: block;          /* ← clave */
  width: 100%;
  height: 120px;
  border: 0 !important;
  outline: none;
  margin: 0;
  padding: 0;
  background: transparent;
} 
  
}