/* Player Styles */
.mf-player-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: var(--mf-radius-lg); overflow: hidden; }
.mf-player-wrapper video { width: 100%; height: 100%; object-fit: contain; }
.player-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.7); z-index: 5; }
.mf-player-fullscreen { position: fixed; inset: 0; background: #000; z-index: var(--mf-z-player-fullscreen); display: flex; align-items: center; justify-content: center; }
.player-close-btn { position: absolute; top: 20px; right: 20px; z-index: 10; width: 44px; height: 44px; border-radius: var(--mf-radius-full); background: rgba(0,0,0,0.5); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--mf-transition-fast); }
.player-close-btn:hover { background: rgba(255,255,255,0.2); }
