/* Extracted from index.php inline <style> on 2025-07-30 */

.audio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.player-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
  padding-left: 24px;
  padding-right: 24px;
  overflow: visible;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.player-controls-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.dj-info-top {
  display: none;
  text-align: center;
  padding: 8px 12px;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  border-radius: 8px;
  border: 1px solid rgba(40, 167, 69, 0.3);
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.dj-info-top.show {
  display: block;
}

.dj-info-top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dj-info-top-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid #28a745;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 2px;
}

.dj-info-top-text {
  text-align: left;
}

.dj-info-top-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 3px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dj-info-top-name {
  font-size: 14px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.play-btn {
  background: linear-gradient(135deg, #0048c0, #003a9b);
  border: 3px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 72, 192, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn:hover {
  background: linear-gradient(135deg, #003a9b, #002e7a);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 72, 192, 0.6);
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn.playing {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.play-btn.playing:hover {
  background: linear-gradient(135deg, #1e7e34, #155724);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.play-btn i {
  font-size: 22px;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.play-icon, .pause-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.play-icon i {
  font-size: 24px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-47%, -50%);
}

.pause-icon i {
  font-size: 22px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-icon::after, .pause-icon::after {
  content: '';
  display: none;
}

.no-fontawesome .play-icon::after {
  content: '▶';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-47%, -50%);
}

.no-fontawesome .pause-icon::after {
  content: '⏸';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.no-fontawesome .play-icon i,
.no-fontawesome .pause-icon i {
  display: none;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-control i {
  color: #0048c0;
  font-size: 16px;
  -webkit-text-stroke: 0.5px white;
  text-stroke: 0.5px white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 72, 192, 0.4);
}

.volume-slider {
  width: 100px;
  height: 8px;
  background: linear-gradient(90deg, #0048c0, #28a745);
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.volume-slider:hover {
  opacity: 1;
}

.volume-slider::-webkit-slider-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #0048c0, #28a745);
  border-radius: 5px;
  border: none;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #0048c0, #28a745);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.volume-slider::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #0048c0, #28a745);
  border-radius: 5px;
  border: none;
}

.volume-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #0048c0, #28a745);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.now-playing {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  width: auto;
  text-align: center;
}

.now-playing.show {
  display: flex;
}

.now-playing-info {
  display: none;
  width: 100%;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  background: #333;
  border-radius: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.now-playing-info.show {
  display: block;
}

.now-playing-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.dj-info {
  flex: 0 0 auto;
  text-align: left;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dj-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #28a745;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.song-info-main {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.music-note {
  font-size: 64px;
  color: #0048c0;
  animation: bounce 1.5s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0, 72, 192, 0.3), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  padding-left: 10px;
}

.song-info-text {
  text-align: center;
  flex: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.now-playing-info .song-title {
  font-weight: bold;
  font-size: 18px;
  color: white;
  margin: 0 0 5px 0;
}

.now-playing-info .artist-name {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.album-art {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: spin 8s linear infinite;
  transition: animation-play-state 0.3s ease;
  position: relative;
  border: 6px solid #1a1a1a;
  background: #222;
  z-index: 10;
  -webkit-mask: radial-gradient(circle at center, transparent 8px, black 11px);
  mask: radial-gradient(circle at center, transparent 8px, black 11px);
  clip-path: circle(50% at center);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.album-art::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at center, transparent 25px, rgba(0,0,0,0.3) 26px, transparent 27px),
    radial-gradient(circle at center, transparent 30px, rgba(0,0,0,0.2) 31px, transparent 32px),
    radial-gradient(circle at center, transparent 35px, rgba(0,0,0,0.3) 36px, transparent 37px),
    radial-gradient(circle at center, transparent 40px, rgba(0,0,0,0.2) 41px, transparent 42px),
    radial-gradient(circle at center, transparent 45px, rgba(0,0,0,0.3) 46px, transparent 47px),
    radial-gradient(circle at center, transparent 50px, rgba(0,0,0,0.2) 51px, transparent 52px);
  pointer-events: none;
  z-index: 5;
}

.album-art::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  border: 2px solid rgba(0, 0, 0, 0.8);
  box-shadow: 
    0 0 0 3px rgba(0, 0, 0, 0.6),
    0 0 20px 4px rgba(0, 0, 0, 0.7),
    inset 0 0 8px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.album-art-container {
  background: 
    linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 25%, #a8a8a8 50%, #d4d4d4 75%, #f0f0f0 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.1) 0%, transparent 40%);
  border-radius: 15px;
  padding: 38px;
  position: relative;
  box-shadow: 
    inset 0 0 30px rgba(0, 0, 0, 0.2),
    inset 0 2px 10px rgba(255, 255, 255, 0.3),
    inset 0 -3px 8px rgba(0, 0, 0, 0.15),
    0 12px 38px 0 rgba(0, 0, 0, 0.32),
    0 20px 50px 0 rgba(0, 0, 0, 0.18);
  border: 2px solid #a0a0a0;
  transform: perspective(800px) rotateX(2deg);
  overflow: visible;
}

.album-art-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 195px;
  height: 195px;
  background: 
    radial-gradient(circle at center, #888 0%, #666 30%, #555 60%, #777 100%),
    linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%),
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 0%, transparent 30%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 
    inset 0 0 20px rgba(0, 0, 0, 0.4),
    inset 0 3px 8px rgba(255, 255, 255, 0.25),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.2);
}

.vinyl-needle {
  position: absolute;
  top: 10%;
  right: 25px;
  z-index: 25;
  pointer-events: none;
  transform-origin: right center;
  transform: rotate(-45deg);
}

.tonearm {
  width: 75px;
  height: 2px;
  background: linear-gradient(90deg, #2a2a2a, #555, #777, #555, #2a2a2a);
  border-radius: 1px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  border: 1px solid #1a1a1a;
}

.tonearm::before {
  content: '';
  position: absolute;
  right: -8px;
  top: -2px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #333, #666, #333);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  border: 1px solid #222;
}

.tonearm::after {
  content: '';
  position: absolute;
  left: -5px;
  top: -1px;
  width: 5px;
  height: 5px;
  background: #444;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.needle-tip {
  position: absolute;
  right: -10px;
  top: 0px;
  width: 1px;
  height: 1px;
  background: linear-gradient(45deg, #888, #ccc);
  border-radius: 0.5px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.album-art.paused ~ .vinyl-needle {
  opacity: 0.4;
  transform: rotate(-35deg) translateX(15px);
  transition: all 0.3s ease;
}

.album-art.paused {
  animation-play-state: paused;
}

.song-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.song-title {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin: 0;
}

.artist-name {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.live-status {
  background: #ff6b35;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  z-index: 10000;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out;
}

.notification.success {
  background: #28a745;
}

.notification.error {
  background: #28a745;
}

.notification.warning {
  background: #0048c0;
  color: white;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.radio-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: padding 0.3s ease;
  overflow: visible;
}

.audio-player {
  max-width: 100%;
}

.player-main {
  max-width: 100%;
}

.player-controls-section {
  max-width: 100%;
  overflow: hidden;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  padding: 10px 20px;
  z-index: 1000;
  border-top: 2px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-social a {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.footer-social a.discord:hover {
  color: #5865F2;
}

.footer-social a.twitter:hover {
  color: #1DA1F2;
}

.footer-social a.twitter .fa-x-twitter::before {
  content: "\e61b";
}

.no-fontawesome .footer-social a.twitter i::after {
  content: "𝕏";
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
}

.no-fontawesome .footer-social a.twitter i::before {
  display: none;
}

.footer-social a.youtube:hover {
  color: #FF0000;
}

.footer-copyright {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
}

body {
  padding-bottom: 80px;
}
