/* MobRadio Web Player Styles */

/* Base Player Styles */
.mobradio-player {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  max-width: 100%;
}

.mobradio-player * {
  box-sizing: border-box;
}

/* Dark Mode */
.mobradio-player.dark-mode {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* Light Mode */
.mobradio-player.light-mode {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

/* Horizontal Layout */
.mobradio-player.horizontal {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  min-height: 70px;
  max-width: 500px;
  border-radius: 16px;
}

.mobradio-player.horizontal .mobradio-player-cover {
  width: 50px;
  height: 50px;
  margin-right: 12px;
  flex-shrink: 0;
}

.mobradio-player.horizontal .mobradio-player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.mobradio-player.horizontal .mobradio-player-info {
  flex: 1;
  min-width: 0;
  margin-right: 16px;
}

.mobradio-player.horizontal .mobradio-player-now-playing {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobradio-player.horizontal .mobradio-player-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobradio-player.horizontal .mobradio-player-artist {
  font-size: 14px;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobradio-player.horizontal .mobradio-player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: 20px !important;
}

.mobradio-player.horizontal .mobradio-player-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px;
}

.mobradio-player.horizontal .mobradio-player-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.mobradio-player.horizontal .mobradio-player-play-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 16px;
}

.mobradio-player.horizontal .mobradio-player-share-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobradio-player.horizontal .mobradio-player-share-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z"/></svg>');
}

/* Vertical Layout */
.mobradio-player.vertical {
  padding: 20px;
  text-align: center;
  max-width: 280px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
}

.mobradio-player.vertical .mobradio-player-header {
  margin-bottom: 16px;
}

.mobradio-player.vertical .mobradio-player-now-playing {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobradio-player.vertical .mobradio-player-share-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 14px;
}

.mobradio-player.vertical .mobradio-player-share-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z"/></svg>');
}

.mobradio-player.vertical .mobradio-player-cover {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
}

.mobradio-player.vertical .mobradio-player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobradio-player.vertical .mobradio-player-info {
  margin-bottom: 32px;
}

.mobradio-player.vertical .mobradio-player-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.mobradio-player.vertical .mobradio-player-artist {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.3;
}

.mobradio-player.vertical .mobradio-player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.mobradio-player.vertical .mobradio-player-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 18px;
}

.mobradio-player.vertical .mobradio-player-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.mobradio-player.vertical .mobradio-player-play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border: none;
  font-size: 22px;
}

/* Vote Button States */
.mobradio-player-btn.voted {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #333 !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.mobradio-player-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Play Button States */
.mobradio-player-play-btn.playing::before {
  content: "⏸";
}

.mobradio-player-play-btn.paused::before {
  content: "▶";
}

/* Vote Button Icons */
.mobradio-player-like-btn::before {
  content: "👍";
}

.mobradio-player-dislike-btn::before {
  content: "👎";
}

.mobradio-player-share-btn::before {
  content: "🔗";
}

/* Audio Element */
.mobradio-player-audio {
  display: none;
}

/* Message Display */
.mobradio-player-message {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 10;
  display: none;
}

.mobradio-player-message.success {
  background: #27ae60;
  color: white;
}

.mobradio-player-message.error {
  background: #e74c3c;
  color: white;
}

/* Error State */
.mobradio-player-error {
  padding: 16px;
  background: #e74c3c;
  color: white;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 480px) {
  .mobradio-player.horizontal {
    padding: 12px;
    min-height: 70px;
  }

  .mobradio-player.horizontal .mobradio-player-cover {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }

  .mobradio-player.horizontal .mobradio-player-title {
    font-size: 14px;
  }

  .mobradio-player.horizontal .mobradio-player-artist {
    font-size: 12px;
  }

  .mobradio-player.horizontal .mobradio-player-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .mobradio-player.horizontal .mobradio-player-play-btn {
    width: 42px;
    height: 42px;
  }

  .mobradio-player.vertical {
    padding: 20px;
    min-height: 350px;
  }

  .mobradio-player.vertical .mobradio-player-cover {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
  }

  .mobradio-player.vertical .mobradio-player-title {
    font-size: 20px;
  }

  .mobradio-player.vertical .mobradio-player-artist {
    font-size: 16px;
  }

  .mobradio-player.vertical .mobradio-player-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .mobradio-player.vertical .mobradio-player-play-btn {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
}

/* Dark Mode Specific Adjustments */
.mobradio-player.dark-mode .mobradio-player-btn {
  background: rgba(255, 255, 255, 0.15);
}

.mobradio-player.dark-mode .mobradio-player-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.mobradio-player.dark-mode .mobradio-player-play-btn {
  background: rgba(255, 255, 255, 0.95);
}

/* Light Mode Specific Adjustments */
.mobradio-player.light-mode .mobradio-player-btn {
  background: rgba(255, 255, 255, 0.25);
}

.mobradio-player.light-mode .mobradio-player-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.mobradio-player.light-mode .mobradio-player-play-btn {
  background: rgba(255, 255, 255, 0.95);
}
