/* XRWM FM – Mobile Player tweaks + Live DJ style */

/* 🔴 Στυλ όταν είναι live ο DJ */
.live-dj {
  color: #ff4444 !important;
  font-weight: 700;
  text-shadow: 0 0 10px #ff4444, 0 0 20px #ff0000, 0 0 30px #ff0000;
  animation: djGlow 1.5s infinite alternate;
}
@keyframes djGlow {
  from { text-shadow: 0 0 6px #ff4444, 0 0 12px #ff0000; }
  to   { text-shadow: 0 0 20px #ff7777, 0 0 40px #ff1e1e; }
}

/* 📱 Μάζεμα player μόνο στο κινητό */
@media (max-width: 768px) {
  .now-playing img { width: 110px !important; height: 110px !important; }
  .play-btn { width: 50px !important; height: 50px !important; }
  .play-btn svg { width: 24px !important; height: 24px !important; }
  h1 { font-size: .95rem !important; }
  h2 { font-size: .8rem !important; }
  .column { padding: 8px !important; }
}
