body {
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: white;
  margin: 0;
  padding: 30px;
}

#zoytv-player {
  max-width: 1000px;
  margin: auto;
  background: #1b1b1b;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- LAYOUT --- */
.player-layout {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}

#playerLeft {
  flex: 1;
  text-align: center;
  max-width: 45%;
}

#mainCover img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 40px #f12e82;
  transition: 0.4s;
}

#mainTitle {
  color: #f12e82;
  margin-top: 15px;
}

#mainPlay {
  margin: 10px auto;
  background: #f12e82;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 0 20px #f12e82;
  transition: 0.3s;
}

#mainPlay:hover {
  transform: scale(1.1);
}

/* --- ACCORDION --- */
.accordion {
  margin-top: 20px;
  text-align: left;
}

.accordion-item {
  background: #2a2a2a;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.accordion-header {
  padding: 12px 15px;
  font-weight: bold;
  cursor: pointer;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: #333;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.radio-card {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #444;
  cursor: pointer;
  transition: background 0.3s;
}

.radio-card:hover {
  background: #333;
}

.radio-card img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}

.radio-info {
  flex: 1;
}

.radio-info h4 {
  margin: 0;
  font-size: 15px;
  color: white;
}

/* --- RESPONSIVE --- */
@media(max-width:700px){
  .player-layout {
    flex-direction: column;
  }

  #playerLeft {
    max-width: 100%;
  }

  #playerRight {
    margin-top: 10px;
  }
}

@media(min-width:701px){
  #playerRight {
    flex: 1;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 5px;
  }

  #mainCover img {
    max-width: 260px;
  }
}
