/* =================================================================== */
/*      MAKUMOTO FEATURES (v2.0)
/*      Módulos Avanzados: Magazine, Nexo (Tribu) y Social Hub
/* =================================================================== */

/* =================================================================== */
/*      1. MAGAZINE "PULSE" (ESTILO EDITORIAL)
/* =================================================================== */

/* Contenedor Principal (Overlay) */
.magazine-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100dvh;
    background-color: #121212; /* Gris Grafito Profundo */
    z-index: var(--z-overlay);
    display: flex;
    align-items: center; justify-content: center;
    padding: 10px;
    
    /* Estado inicial manejado por JS (clase .show) */
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease;
}

.magazine-overlay.show { opacity: 1; visibility: visible; }

.magazine-overlay .modal-content {
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    width: 100%; max-width: 500px; height: 100%;
    display: flex; flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* --- Header Editorial --- */
.pulse-header {
    display: flex; justify-content: center; align-items: center;
    padding: 20px 0;
    background: #121212;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    flex-shrink: 0;
}

/* Botón cerrar y fecha */
.pulse-header-actions {
    position: absolute; right: 20px; top: 20px;
    display: flex; flex-direction: column; align-items: flex-end;
}

.pulse-brand {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    line-height: 0.9;
    color: var(--color-primary);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.pulse-date {
    font-family: monospace;
    font-size: 0.7rem;
    color: #888;
}

/* --- Cuerpo del Magazine --- */
.pulse-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background: #121212;
    padding-bottom: 80px; /* Espacio para el dock flotante */
}

/* Portada (Hero) */
.mag-hero {
    height: 45vh; min-height: 350px;
    position: relative;
    background-size: cover; background-position: center;
    /* Corte diagonal abajo */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.mag-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, #121212 10%, rgba(0,0,0,0.5) 60%, transparent 100%);
}

.mag-hero-content {
    position: absolute; bottom: 40px; left: 20px; right: 20px;
    z-index: 2; text-align: left;
}

.mag-headline {
    font-family: var(--font-family);
    font-size: 1.8rem; font-weight: 900;
    line-height: 1.1; margin: 10px 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    text-transform: uppercase;
}

/* --- Dock Flotante (Inferior) --- */
.pulse-dock {
    position: absolute;
    bottom: 20px; left: 0; right: 0;
    display: flex; justify-content: center; align-items: flex-end;
    gap: 15px;
    pointer-events: none; /* Deja pasar clicks en los huecos */
    padding-bottom: 20px;
    z-index: 10;
}

/* Isla Izquierda: Top Voices */
.dock-left-group {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #444;
    padding: 8px 15px;
    border-radius: 50px;
    pointer-events: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex; align-items: center; gap: 10px;
}

.voice-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #121212;
    margin-left: -10px; /* Stack effect */
    background-size: cover;
}
.voice-avatar:first-child { margin-left: 0; }

/* Isla Derecha: Botón Redactar */
.elite-write-btn {
    pointer-events: auto;
    background: var(--color-primary);
    color: #000;
    font-size: 0.85rem; font-weight: 800;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    border: 2px solid #fff;
    text-transform: uppercase;
    cursor: pointer;
}

/* =================================================================== */
/*      2. NEXUS / LA TRIBU (SOCIAL HUB)
/* =================================================================== */

.nexus-overlay {
    background: radial-gradient(circle at 50% 10%, #1a1a2e 0%, #000 70%);
}

/* Ticker (Marquesina Superior) */
.nexus-ticker-wrap {
    background: rgba(0, 243, 255, 0.1);
    border-bottom: 1px solid #00f3ff;
    overflow: hidden; height: 30px;
    display: flex; align-items: center;
}
.nexus-ticker {
    white-space: nowrap;
    font-size: 0.75rem; color: #00f3ff;
    font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase;
    /* Animación definida en fx.css */
}

/* Header Tribu */
.nexus-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: center;
    position: relative;
}
.nexus-brand span {
    font-family: 'Teko', sans-serif;
    color: var(--color-primary);
    font-size: 2.4rem; line-height: 0.9;
}

/* Podio (Ranking) */
.nexus-podium {
    display: flex; justify-content: center; align-items: flex-end;
    gap: 15px; padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(255,215,0,0.02));
}

.podium-user {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
}

.podium-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 2px solid #555;
    background-size: cover;
    margin-bottom: 5px;
}
.podium-user.rank-1 .podium-avatar {
    width: 65px; height: 65px;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary-dim);
}

.podium-rank {
    background: #333; color: #fff;
    padding: 2px 8px; border-radius: 10px;
    font-size: 0.7rem; font-weight: 800;
    margin-top: -10px; z-index: 2;
    border: 1px solid #000;
}

/* Radar (Scroll Horizontal) */
.nexus-radar-scroll {
    display: flex; gap: 10px;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
}
.radar-card {
    min-width: 100px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

/* =================================================================== */
/*      3. SOCIAL HUB & NOTIFICATIONS (CLEAN STYLE)
/* =================================================================== */

.social-hub-content {
    background: #111;
    border: 1px solid #333;
    max-width: 500px;
    height: 80vh;
    border-radius: 16px;
    display: flex; flex-direction: column;
    overflow: hidden;
}

/* Tabs de Notificaciones */
.social-hub-tabs {
    display: flex;
    background: #0a0a0a;
    padding: 10px;
    border-bottom: 1px solid #222;
    gap: 10px;
    overflow-x: auto;
}

.tab-btn {
    background: #222;
    border: 1px solid #333;
    color: #aaa;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.85rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}

.tab-btn.active {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
}

/* Lista de Notificaciones */
.notification-list { list-style: none; padding: 0; margin: 0; }

.notification-item {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #222;
    transition: background 0.2s;
}
.notification-item:hover { background: rgba(255,255,255,0.03); }

/* Iconos Cuadrados Redondeados */
.notif-icon-box {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: #1f1f1f;
    border: 1px solid #333;
}

/* Colores Semánticos */
.notif-icon-box.applaud { color: var(--color-primary); border-color: rgba(255, 215, 0, 0.3); }
.notif-icon-box.boo { color: var(--color-danger); border-color: rgba(231, 76, 60, 0.3); }
.notif-icon-box.reply { color: #3498db; border-color: rgba(52, 152, 219, 0.3); }

.notif-content { flex: 1; font-size: 0.9rem; color: #ddd; line-height: 1.4; }
.notif-content strong { color: #fff; }
.notif-meta { display: block; font-size: 0.75rem; color: #666; margin-top: 6px; }
/* =================================================================== */
/*      CREATION MENU (MAKUMOTO CARD STYLE)
/* =================================================================== */

.creation-menu-overlay {
    position: fixed; 
    top: 0; left: 0; 
    width: 100vw; height: 100dvh;
    background: rgba(0,0,0,0.85); /* Fondo oscuro sólido para enfocar */
    backdrop-filter: blur(8px);
    z-index: 20000; /* Siempre encima */
    
    /* CENTRADO PERFECTO */
    display: flex; 
    align-items: center; 
    justify-content: center;
    
    opacity: 0; visibility: hidden; 
    transition: all 0.25s ease-out;
}
.creation-menu-overlay.show { opacity: 1; visibility: visible; }

/* LA TARJETA CENTRAL */
.creation-card {
    background: #111;
    width: 90%; 
    max-width: 360px; /* Ancho cómodo tipo móvil */
    border-radius: 24px;
    padding: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    
    /* ANIMACIÓN DE POP (ZOOM) */
    transform: scale(0.9); opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Efecto rebote suave */
}
.creation-menu-overlay.show .creation-card { 
    transform: scale(1); opacity: 1; 
}

/* HEADER LIMPIO */
.card-header-clean {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; padding-bottom: 15px;
    border-bottom: 1px solid #222;
}
.card-label { 
    font-size: 0.75rem; font-weight: 800; color: #666; letter-spacing: 1px; text-transform: uppercase; 
}
.close-card-btn { 
    background: #222; color: #fff; border: none; 
    width: 30px; height: 30px; border-radius: 50%; 
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.close-card-btn:hover { background: #333; }

/* GRID DE OPCIONES */
.card-grid-options {
    display: flex; flex-direction: column; gap: 12px;
}

/* BOTONES ESTILO TILE (LOSETAS) */
.action-tile {
    display: flex; align-items: center; gap: 15px;
    background: #1a1a1a; 
    border: 1px solid #2a2a2a;
    padding: 12px 15px; 
    border-radius: 16px; 
    cursor: pointer; 
    text-align: left;
    transition: background 0.2s, transform 0.1s;
}

.action-tile:active { 
    background: #252525; 
    transform: scale(0.97); 
}

.tile-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tile-info { display: flex; flex-direction: column; }
.tile-info strong { color: #fff; font-size: 1rem; font-weight: 700; }
.tile-info span { color: #888; font-size: 0.8rem; }
/* =================================================================== */
/*      MAKUMOTO COMPOSER v4 (GOLD EDITION & WHITE BG KILLER)
/* =================================================================== */

/* 1. RESETEO DEL CONTENEDOR PADRE (CRÍTICO) */
/* Esto fuerza al modal a centrarse y tener el ancho correcto sin márgenes raros */
#community-post-modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#community-post-modal .modal-content {
    width: 90vw !important; /* 90% del ancho de pantalla */
    max-width: 450px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: visible !important;
}

/* 2. LA TARJETA (TEMA DARK BLOOD + BORDE DORADO) */
.clean-composer {
    /* Fondo degradado oscuro */
    background: linear-gradient(180deg, #150000 0%, #000000 100%) !important;
    
    /* EL BORDE DORADO SOLICITADO */
    border: 2px solid #FFD700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15), 0 20px 50px rgba(0,0,0,0.9) !important;
    
    border-radius: 20px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    
    /* Altura automática pero con mínimo */
    min-height: 320px;
    box-sizing: border-box !important;
}

/* 3. HEADER */
.composer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 15px; margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2); /* Línea dorada sutil */
    width: 100%;
}

.composer-user { display: flex; align-items: center; gap: 10px; }

.c-avatar { 
    width: 42px; height: 42px; border-radius: 50%; background-size: cover; 
    border: 2px solid #FFD700; /* Borde avatar dorado */
}

.c-name { color: #fff; font-weight: 800; font-size: 0.95rem; }
.xp-badge { font-size: 0.6rem; color: #FFD700; font-weight: 700; text-transform: uppercase; }

.close-composer-btn {
    background: rgba(255,255,255,0.1); color: #fff; border: none; 
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}

/* 4. ELIMINACIÓN DEL FONDO BLANCO (ÁREA DE TEXTO) */
.composer-body {
    flex: 1; display: flex; flex-direction: column; width: 100%;
    margin-bottom: 10px;
}

/* Atacamos por clase y por ID para asegurar prioridad */
.c-textarea, textarea#post-content {
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-family: var(--font-family, sans-serif);
    font-size: 1.1rem;
    line-height: 1.5;
    width: 100% !important;
    padding: 10px 0 !important;
    resize: none;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none; /* Fix para iOS */
}

.c-textarea::placeholder { color: rgba(255,255,255,0.3) !important; font-style: italic; }

/* 5. FOOTER (SOLUCIÓN AL DESCUADRE) */
.composer-footer {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    /* Permite que se acomoden si falta espacio muy extremo */
    flex-wrap: wrap; 
    gap: 10px;
}

.c-tools { display: flex; gap: 12px; }

.c-tool-btn {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #ccc; width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}

.c-actions {
    display: flex; align-items: center; gap: 15px;
    margin-left: auto; /* Empuja el botón a la derecha */
}

.c-counter { color: #666; font-family: monospace; font-weight: 700; font-size: 0.9rem; }

.c-publish-btn {
    background: #b71c1c; /* Rojo base */
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: #fff; border: none;
    padding: 10px 24px; border-radius: 50px;
    font-weight: 800; font-size: 0.9rem; text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    cursor: pointer;
    white-space: nowrap; /* Evita que el texto se parta en dos líneas */
}
/* =================================================================== */
/*      COMPOSER ANDROID FIX (VISIBILIDAD MÁXIMA)
/* =================================================================== */

.composer-overlay {
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; 
    /* La altura se ajustará por JS para Android, default 100% */
    height: 100%; 
    background: #000;
    z-index: 2147483647 !important;
    display: flex; flex-direction: column;
}

.composer-container-fullscreen {
    display: flex; flex-direction: column;
    height: 100%; width: 100%; 
    max-width: 600px; margin: 0 auto;
    position: relative;
    background: #000;
}

/* 1. HEADER */
.x-composer-header {
    flex-shrink: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 15px; 
    height: 50px; 
    border-bottom: 1px solid #222;
    background: #000;
}
.x-close-btn {
    background: transparent; border: none; color: #fff;
    font-size: 1.8rem; line-height: 1; padding: 5px;
}

/* 2. BODY */
.x-composer-body {
    flex: 1; /* Ocupa el espacio sobrante */
    overflow-y: auto; /* Scroll interno */
    padding: 15px; 
    display: flex; gap: 12px;
}

.x-avatar-col { flex-shrink: 0; padding-top: 5px; }
.x-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background-color: #222; background-size: cover; border: 1px solid #333;
}

.x-input-col { flex: 1; width: 100%; display: flex; flex-direction: column; }

/* TEXTAREA - TEXTO FANTASMA CLARO */
.x-input-col textarea {
    width: 100%; background: transparent; border: none;
    resize: none; outline: none; font-family: inherit;
    font-size: 1rem; line-height: 1.4;
    color: #fff; 
    margin-top: 8px; min-height: 80px;
}
/* AQUÍ ESTÁ EL ARREGLO DEL TEXTO FANTASMA */
.x-input-col textarea::placeholder { 
    color: #e0e0e0 !important; /* Casi blanco */
    opacity: 1 !important; 
    font-weight: 500;
}

/* 3. HERRAMIENTAS (Pegadas al footer) */
.x-tools-panel {
    flex-shrink: 0; width: 100%;
    background: #000;
    padding: 0 15px;
}

/* Estilos herramientas */
.emoji-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px;
    background: #111; padding: 10px; border-radius: 12px;
    max-height: 150px; overflow-y: auto; margin-bottom: 10px;
}
.emoji-btn { font-size: 1.4rem; background: none; border: none; padding: 5px; }

.poll-creator {
    background: #111; padding: 12px; border-radius: 12px; 
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px;
}
.poll-input {
    width: 100%; background: #000; border: 1px solid #444; color: #fff;
    padding: 10px; border-radius: 8px; font-size: 0.9rem; outline: none;
}
.location-active-badge {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 10px;
    background: rgba(46, 204, 113, 0.2); border: 1px solid #2ecc71;
    color: #2ecc71; padding: 8px 15px; border-radius: 20px; font-weight: bold;
}

/* Preview */
#media-preview-area img, #media-preview-area video {
    width: 100%; max-height: 300px; object-fit: contain; 
    border-radius: 12px; background: #111; margin-top: 10px;
}

/* 4. FOOTER (FIJO TOTAL) */
.x-composer-footer {
    flex-shrink: 0; /* No se aplasta */
    background: #000;
    border-top: 1px solid #333;
    padding: 10px 15px;
    /* Ajuste para móviles modernos */
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    display: flex; justify-content: space-between; align-items: center;
}

.x-toolbar { display: flex; gap: 20px; }
.x-tool-icon {
    background: transparent; border: none; padding: 5px;
    font-size: 1.4rem; color: #FFD700;
}

/* BOTÓN BONEAR (VISIBILIDAD CORREGIDA) */
.x-bonear-btn.sea-glass {
    /* Estado Activo: Azul Neón */
    background: rgba(0, 191, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #00f3ff;
    border: 1px solid #00f3ff;
    padding: 6px 18px; border-radius: 50px;
    font-weight: 800; font-size: 0.9rem; text-transform: uppercase;
}

.x-bonear-btn.sea-glass:disabled {
    /* Estado Inactivo: GRIS CLARO SÓLIDO (Muy visible) */
    background: #333 !important; 
    color: #fff !important; 
    border: 1px solid #555 !important;
    opacity: 1 !important; 
    box-shadow: none;
}

.x-counter { font-size: 0.8rem; color: #fff; font-weight: 600; }
/* =================================================================== */
/*      TV MODE - v10.0 (FORCE GRAY SKELETON)
/* =================================================================== */

/* Contenedor Principal */
.tv-overlay-container {
    position: fixed; top: 0; left: 0; 
    width: 100vw; height: 100vh;
    
    /* FONDO GRIS EXPLÍCITO (NO TRANSPARENTE, NO NEGRO) */
    background-color: #151515 !important; 
    
    z-index: 99999; 
    display: none; /* Controlado por JS con 'display: flex' */
    flex-direction: column;
}

/* CLASE DE ACTIVACIÓN INMEDIATA (Sin transición de opacidad) */
.tv-overlay-container.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* EL ESQUELETO (Lo que se ve mientras carga) */
.tv-skeleton-placeholder {
    width: 100vw; height: 100vh;
    background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
    display: flex; align-items: center; justify-content: center;
    position: absolute; inset: 0; z-index: 100;
}
.tv-skeleton-icon {
    font-size: 3rem; color: #444;
    animation: skeletonPulse 1s infinite alternate;
}
@keyframes skeletonPulse { from { opacity: 0.5; transform: scale(0.95); } to { opacity: 1; transform: scale(1.05); } }


/* Scroll Container */
#tv-scroll-container {
    flex: 1; width: 100%; height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}

/* TARJETA FINAL */
.feed-card.tv-mode {
    position: relative;
    width: 100vw !important; height: 100vh !important;
    scroll-snap-align: start; scroll-snap-stop: always;
    background: #1a1a1a; /* Gris base por si falla imagen */
    overflow: hidden; margin: 0; padding: 0; border: none; display: block;
}

.feed-card.tv-mode .card-media-wrapper {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; background: #1a1a1a;
}

/* VIDEO E IMAGENES */
img.tv-video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; filter: blur(30px) brightness(0.5); transform: scale(1.2); z-index: 1; 
}
video.tv-video-fg, img.tv-video-fg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain; z-index: 5; background: transparent;
}

/* INTERFAZ */
.tv-layout-overlay {
    position: absolute; inset: 0; z-index: 10; pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 100%);
}
.tv-sidebar {
    position: absolute; right: 10px; bottom: 100px;
    display: flex; flex-direction: column; gap: 20px;
    pointer-events: auto; z-index: 20;
}
.tv-info-overlay {
    position: absolute; left: 15px; bottom: 20px; right: 80px;
    text-align: left; color: #fff; pointer-events: auto; z-index: 20;
}

/* Botones y Avatares */
.social-btn { background: transparent; border: none; display: flex; flex-direction: column; align-items: center; color: #fff; font-size: 0.8rem; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.social-btn i { font-size: 1.8rem; margin-bottom: 5px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.tv-avatar-container { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #fff; padding: 2px; background: rgba(0,0,0,0.3); margin-bottom: 10px; }
.tv-avatar-img { width: 100%; height: 100%; border-radius: 50%; background-size: cover; }

/* Animaciones */
.tv-progress-container { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,0.1); z-index: 50; }
.tv-progress-bar { height: 100%; background: #FFD700; width: 0%; transition: width 0.1s linear; }
.makumoto-clap { position: absolute; pointer-events: none; z-index: 100; color: #FFD700; font-size: 2rem; animation: floatUpClap 1.5s ease-out forwards; }
@keyframes floatUpClap { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-250px); } }