import type { ReactNode } from 'react'

/** 影片嵌入播放器：全螢幕黑底 */
export default function EmbedPlayerLayout({ children }: { children: ReactNode }) {
    return (
        <div className="fixed inset-0 z-[1] flex flex-col bg-black text-white overflow-hidden">
            {children}
        </div>
    )
}
