.global-player { position:fixed; z-index:150; inset:auto 0 0; min-height:72px; background:rgba(13,15,19,.95); border-top:1px solid var(--border); backdrop-filter:blur(20px); }
.player-inner { min-height:72px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:16px; }
.player-toggle { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; background:var(--accent); color:#111; cursor:pointer; font-weight:900; }
.player-title { display:flex; align-items:center; gap:10px; font-weight:800; }
.live-dot { width:8px; height:8px; border-radius:50%; background:#f44; box-shadow:0 0 0 0 rgba(255,68,68,.5); animation:pulse 1.7s infinite; }
.player-status { display:block; color:var(--muted); font-size:.8rem; font-weight:500; margin-top:2px; }
.player-controls { display:flex; align-items:center; gap:12px; }
.player-controls input { width:120px; accent-color:var(--accent); }
.player-link { color:var(--accent); font-weight:700; font-size:.9rem; }
@keyframes pulse { 70% { box-shadow:0 0 0 8px rgba(255,68,68,0); } 100% { box-shadow:0 0 0 0 rgba(255,68,68,0); } }
@media(max-width:620px){ .player-inner{grid-template-columns:auto 1fr}.player-controls{display:none}.player-title{font-size:.88rem} }
