
.radio-bar-responsive,
.radio-bar-responsive * {
  box-sizing: border-box;
}

.radio-bar-responsive {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  background: #800000;
  z-index: 999999;
}

.bar-content {
  position: relative; /* CLAVE para centrar absoluto */
  width: 100%;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.logo-container {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  border: 2px solid #ffd600;
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.radio-name {
  font-size: 11px;
  font-weight: 900;
  color: #fff;
}

.track-name {
  font-size: 10px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.center-section {
  position: absolute;      /* 🔑 */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-label {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #ffd600;
  font-size: 18px;
}

/* DESKTOP */
.right-section {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .right-section {
    display: none;
  }
  .center-section {
    position: static;
    transform: none;
  }
}
