/* Usado por: confirmar_retiro_2fa.html (modal confirmación) */
.modal-streaming { position: fixed; inset: 0; background: rgba(6,6,14,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 1000; animation: fadeIn 0.2s ease; }
.modal-streaming__card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; max-width: 480px; width: 90%; position: relative; }
.modal-streaming__close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
.modal-streaming__close:hover { color: var(--text-white); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
