body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: white;
}

/* HEADER */
.header {
  padding: 20px;
}

.header input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #1a1a1a;
  color: white;
}

/* HERO */
#hero {
  margin: 15px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(transparent, black);
}

/* SCROLL */
.scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 15px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  padding: 15px;
}

/* CARD */
.radio {
  position: relative;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.radio img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.radio p {
  padding: 8px;
  text-align: center;
}

/* FAVORITO */
.fav {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
}
/* PLAYER PREMIUM */
#playerBar {
  position: fixed;
  bottom: 15px;
  left: 10px;
  right: 10px;
  backdrop-filter: blur(12px);
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* IMAGEN */
.player-left img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
}

/* INFO */
.player-center {
  flex: 1;
  padding: 0 10px;
}

.player-center h3 {
  margin: 0;
  font-size: 14px;
}

.player-center p {
  margin: 0;
  font-size: 12px;
  color: #aaa;
}

/* BOTÓN PRO */
.player-right button {
  background: linear-gradient(45deg, #ff0055, #ff3366);
  border: none;
  color: white;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255,0,80,0.6);
  cursor: pointer;
  transition: 0.3s;
}

.player-right button:hover {
  transform: scale(1.1);
}

/* ECUALIZADOR */
.equalizer {
  display: flex;
  gap: 3px;
  margin-top: 5px;
}

.equalizer span {
  width: 4px;
  height: 8px;
  background: #ff0055;
  border-radius: 2px;
  animation: bounce 1s infinite ease-in-out;
}

.equalizer span:nth-child(2) { animation-delay: 0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0.4s; }
.equalizer span:nth-child(4) { animation-delay: 0.6s; }

@keyframes bounce {
  0%,100% { height: 5px; }
  50% { height: 15px; }
}

.equalizer.pause span {
  animation: none;
}

#playBtn {
  color: white;
  font-size: 20px;
}


/* SLIDER PRO */
.slider {
  width: 95%;
  height: 200px;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BOTONES */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(255,0,80,0.8);
}

/* RESPONSIVE SLIDER */
.slider {
  max-width: 1200px;
  margin: 20px auto;
  height: 250px;
}

.slide img {
  height: 250px;
}

/* MÓVIL */
@media (max-width: 768px) {
  .slider {
    height: 180px;
  }

  .slide img {
    height: 180px;
  }
}

.header {
  max-width: 1200px;
  margin: auto;
}


.listeners {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,0.7);
  padding: 3px 6px;
  border-radius: 8px;
  font-size: 11px;
  color: #fff;
}

/* IMPORTANTE */
.radio {
  position: relative;
}

body {
  background: #f1f5f9;
  color: #111;
}

/* BOTÓN */
.add-btn {
  margin: 10px;
  padding: 10px 15px;
  background: #ff0050;
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-content input {
  padding: 10px;
  border: none;
  border-radius: 8px;
}

