.radio-player-sanjuanera {
  width: 100%;
  max-width: 320px; 
  background: #150028cc;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 30px rgb(202, 204, 64); 
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto; 
  box-sizing: border-box; 
}
.radio-player-sanjuanera::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://i.postimg.cc/rs37FGH5/logo1-Photoroom.png') no-repeat center center;
  background-size: cover;
  filter: blur(10px);
  opacity: 0.4;
  z-index: 0; 
}
canvas.visualizer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}
.cover {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 4px solid cyan;
  box-shadow: 0 0 20px cyan;
  z-index: 2; 
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-streamer {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0ff;
  margin-bottom: 5px;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.title-streamer + p { 
  margin-top: 0px;
  margin-bottom: 20px; 
  font-size: 0.9rem;
  color: #ccc;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.title-streamer i { 
  margin-left: 5px;
}
.controls-streamer {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  z-index: 2;
}
.btn-streamer {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #150028;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 10px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.btn-streamer:hover {
  transform: scale(1.1);
}
.volume-controls-streamer {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  z-index: 2;
}
.volume-btn-streamer {
  background: #0ff;
  border: none;
  color: #000;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .radio-player-sanjuanera {
    padding: 15px;
    max-width: 100%; 
  }
  .cover { width: 120px; height: 120px; }
  .title-streamer {
    font-size: 1rem;
  }
  .title-streamer + p {
    font-size: 0.85rem;
  }
}