/** * PlayerBarGlass — Glassmorphism container (KŌDŌ v3) * backdrop-blur + semantic tokens + gradient overlay + noise texture * Spotify/Discord-grade polish with accent gradient, top-edge highlight, and noise depth */ import { cn } from '@/lib/utils'; interface PlayerBarGlassProps { children: React.ReactNode; isHovered: boolean; className?: string; } export function PlayerBarGlass({ children, isHovered, className, }: PlayerBarGlassProps) { return (