.ac-player {
  width: 100%;
  max-width: 100%;
  padding: 24px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: rgba(18,18,18,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 0 40px rgba(0,0,0,0.55);
}

.ac-song-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ac-song {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  word-break: break-word;
  margin-bottom: 6px;
  text-align: center;
}

.ac-song::before {
  content: "TÄLLÄ HETKELLÄ SOI";
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: #00ffd5;
  opacity: 0.95;
  text-transform: uppercase;
}

.ac-player-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 10px;
  padding: 6px 10px;
  text-align: center;
  width: 90%;
  margin-top: 4px;
}

.ac-meta {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.ac-volume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 16px;
  width: 100%;
}
.ac-volume input[type="range"] {
  width: 140px;
  appearance: none;
}
.ac-volume input[type="range"]::-moz-range-track { height:4px; background:#444; border-radius:999px;}
.ac-volume input[type="range"]::-moz-range-thumb { width:14px;height:14px;background:#00ffd5;border:none;border-radius:50%;cursor:pointer;}
.ac-volume input[type="range"]::-webkit-slider-runnable-track { height:4px; background:#444;border-radius:999px;}
.ac-volume input[type="range"]::-webkit-slider-thumb { appearance:none;width:14px;height:14px;background:#00ffd5;border-radius:50%;margin-top:-5px;cursor:pointer;}

#ac-play {
  display: inline-block;
  background: #00ffd5;
  color: #000;
  border: none;
  padding: 14px 38px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  transition: background 0.3s, transform 0.2s;
}
#ac-play:hover { background:#00ffc0; transform:scale(1.05); }

@media (max-width:600px){
  .ac-player { padding:16px; border-radius:12px; }
  .ac-song { font-size:16px; padding:10px 12px; margin-bottom:6px; }
  .ac-player-text { font-size:14px; width:95%; padding:8px 10px; }
  .ac-volume input[type="range"] { width:100%; max-width:100%; }
  #ac-play { width:100%; padding:14px 0; text-align:center; }
  .ac-meta { flex-direction:column; gap:6px; font-size:12px; }
}
