
.radio-container {
  width: 100%;
  /* max-width: 500px;  عرض مناسب */
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 10px;
}

.player {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  color: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: 'Cairo', sans-serif;
}

.player h2 {
  margin: 0 0 10px 0;
  text-align: center;
  flex-basis: 100%;
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.btn {
  background: #22c55e;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: #16a34a;
  transform: scale(1.05);
}

.equalizer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 40px;
  margin-top: 15px;
}
.bar {
  width: 6px;
  height: 10px;
  margin: 0 3px;
  background: #22c55e;
  border-radius: 5px;
  animation: bounce 1s infinite ease-in-out;
}
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }
.bar:nth-child(4) { animation-delay: 0.6s; }
.bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes bounce {
  0%, 100% { height: 10px; }
  50% { height: 35px; }
}

/* الصورة الثابتة على اليمين */
.player img {
  width: auto;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  margin-left: 15px;
}

