/* =================================================================== */
/*      MAKUMOTO FEED (v2.0)
/*      Estilos visuales para Modo TV (Vertical) y Modo Pulso (Horizontal)
/* =================================================================== */

/* =================================================================== */
/*      1. COMPONENTES COMUNES (MEDIA & BOTONES)
/* =================================================================== */

/* Contenedor de Media (Video/Imagen) */
.card-media-wrapper { 
    position: absolute; 
    inset: 0; 
    z-index: var(--z-base); 
    width: 100%; height: 100%; 
    display: flex; align-items: center; justify-content: center; 
    background: #000; 
    pointer-events: none; /* Permite scroll a través del video */
}

/* El Video o Imagen real */
.card-media { 
    width: 100%; height: 100%; 
    object-fit: cover; 
    object-position: center; 
    display: block; 
}

/* Efecto Blur para imágenes verticales en fondo */
.social-card--image .card-media-wrapper::before { 
    content: ''; position: absolute; inset: 0; 
    background: var(--bg-image) center/cover no-repeat; 
    filter: blur(30px) brightness(0.6); 
    z-index: 1; 
}

.social-card--image img.card-media { 
    object-fit: contain; /* La imagen principal no se recorta */
    z-index: 2; position: relative; 
}

/* Botón Social Base (Like, Comment, Share) */
.social-btn { 
    appearance: none; 
    background: transparent; 
    border: none; 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer; 
    transition: transform 0.2s, color 0.3s; 
    padding: 0;
}

.social-btn:active { transform: scale(0.8); }

.social-btn i {
    transition: color 0.3s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Estado: Aplaudido (Like) */
.social-btn.applauded i { 
    color: var(--color-primary); 
    text-shadow: 0 0 10px var(--color-primary);
}

/* Estado: Boo (Dislike) */
.social-btn.booed i.fa-face-angry {
    color: var(--color-text-primary);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* Etiqueta pequeña bajo el icono */
.social-label {
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* =================================================================== */
/*      2. MODO TV (ESTILO YOUTUBE SHORTS - BUTTON NEXT TO NAME)
/* =================================================================== */

/* Overlay de Layout */
.tv-layout-overlay {
    position: absolute; 
    inset: 0; 
    z-index: 10; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 90%, rgba(0,0,0,0.9) 100%);
}

/* --- BARRA LATERAL (ICONOS) --- */
.tv-sidebar {
    position: absolute; 
    right: 8px; 
    bottom: 100px !important; /* Altura ajustada */
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 20px !important; 
    pointer-events: auto;
    z-index: 20;
}

/* Iconos más pequeños */
.tv-sidebar .social-btn {
    flex-direction: column;
    gap: 4px; 
    opacity: 1;
    margin: 0 !important; padding: 0 !important;
}
.tv-sidebar .social-btn i { 
    font-size: 26px !important; /* Iconos compactos */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); 
}
.tv-sidebar .social-btn span {
    font-size: 11px; font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,0.8);
    font-family: -apple-system, sans-serif;
}
.social-btn.applauded i { color: #fe2c55 !important; }

/* --- AVATAR (SIN BOTÓN SEGUIR) --- */
.tv-avatar-container {
    position: relative;
    width: 44px; height: 44px; 
    margin-bottom: 20px !important; 
}

.tv-avatar-img { 
    width: 100%; height: 100%; 
    border-radius: 50%; 
    border: 1px solid #fff; 
    background-size: cover; background-position: center;
}

/* 🔥 ELIMINAR EL BOTÓN VIEJO DEL AVATAR 🔥 */
.tv-follow-badge {
    display: none !important;
}

/* --- INFO TEXTO CON CABECERA FLEX --- */
.tv-info-overlay {
    position: absolute; 
    left: 12px; 
    bottom: 100px !important; 
    width: 70% !important; 
    pointer-events: auto; 
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* 🔥 NUEVO CONTENEDOR: NOMBRE + BOTÓN (LADO A LADO) */
.tv-header-row {
    display: flex;
    align-items: center;
    gap: 10px; /* Separación entre nombre y botón */
    margin-bottom: 8px;
}

.tv-username {
    font-weight: 700;
    font-size: 15px; 
    margin: 0 !important; /* Quitamos margen para que se alinee */
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px; /* Para que no empuje el botón fuera */
}

/* 🔥 EL NUEVO BOTÓN "UNIRSE/SEGUIR" (ESTILO YOUTUBE) */
.tv-follow-pill {
    background-color: #ffffff; /* Blanco YouTube */
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 18px; /* Forma de pastilla */
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: capitalize;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    flex-shrink: 0; /* Que no se aplaste */
}

.tv-follow-pill:active { transform: scale(0.95); background-color: #e0e0e0; }
.tv-follow-pill.following { display: none; } /* Se oculta si ya sigues */

.tv-description { 
    font-size: 14px; 
    font-weight: 400;  
    line-height: 1.3; 
    color: #eee; 
    text-shadow: 0 1px 1px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2 !important; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* =================================================================== */
/*      3. MODO PULSO (TWITTER STYLE - HORIZONTAL)
/* =================================================================== */

/* Layout de la tarjeta horizontal */
.pulse-card-layout {
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    justify-content: space-between;
    padding: 20px 20px 100px 20px; /* Padding inferior extra para navegación */
    box-sizing: border-box;
    
    /* Fondo degradado sutil */
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: auto;
}

/* Header del Post (Usuario) */
.pulse-header-row {
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 15px;
    z-index: 2;
}

.pulse-avatar {
    width: 45px; height: 45px; 
    border-radius: 50%; 
    border: 2px solid #fff;
    background-size: cover; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.pulse-meta { display: flex; flex-direction: column; }
.pulse-meta h4 { 
    margin: 0; 
    font-size: 1rem; 
    font-weight: 800; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.8); 
}
.pulse-meta span { 
    font-size: 0.8rem; 
    opacity: 0.9; 
}

/* Cuerpo de Texto (Grande y Centrado) */
.pulse-body-text {
    flex: 1; 
    display: flex; 
    align-items: center; justify-content: center;
    font-size: 1.5rem; 
    font-weight: 600; 
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    padding: 0 10px;
    z-index: 2;
}

/* Barra de Acciones Horizontal */
.pulse-actions-row {
    display: flex; 
    justify-content: space-around; 
    align-items: center;
    padding-top: 15px; 
    border-top: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
}

.pulse-actions-row .social-btn {
    flex-direction: row; /* Icono al lado del texto */
    gap: 8px; 
    font-size: 1.1rem;
}
.pulse-actions-row .social-btn i { font-size: 1.3rem; }

/* =================================================================== */
/*      4. TEMAS DE TARJETAS (GRADIENTES)
/*      Recuperados de generic.css pero aplicados a tarjetas
/* =================================================================== */

.feed-card.theme-male .pulse-card-layout { background: linear-gradient(135deg, #0d47a1, #1976d2); }
.feed-card.theme-female .pulse-card-layout { background: linear-gradient(135deg, #880e4f, #d81b60); }
.feed-card.theme-sponsor .pulse-card-layout { 
    background: linear-gradient(135deg, #000, #333); 
    border: 2px solid var(--color-primary); 
}
.feed-card.theme-expert .pulse-card-layout { background: linear-gradient(135deg, #004d40, #00695c); }
/* =========================================
   ESTILO TRUTH SOCIAL / ELITE (V8.0 - REPLICA X COMPACTA)
   ========================================= */

/* 1. Tarjeta Base */
.pro-twitter-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 10px 15px !important; /* Padding más compacto */
    border-bottom: 1px solid #2f3336 !important;
    background-color: #000000 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    gap: 10px !important; /* Gap reducido */
    text-align: left !important;
    overflow: hidden !important;
    
    /* Fuente del Sistema (Clave para que se vea como X) */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* 2. Avatar */
.tweet-left-col {
    flex-shrink: 0 !important;
    padding-top: 0 !important; 
    margin: 0 !important;
}

.tweet-avatar {
    width: 40px !important; /* Ligeramente más pequeño, estilo X */
    height: 40px !important;
    border-radius: 50% !important;
    background-size: cover !important; background-position: center !important;
    background-color: #1a1a1a !important; border: none !important;
    display: block !important;
}

/* 3. Columna Derecha */
.tweet-right-col {
    flex: 1 !important;
    min-width: 0 !important; /* Permite que el texto se corte si es muy largo */
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important; 
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 0 !important;
    margin: 0 !important; padding: 0 !important;
}

/* 4. Header (Nombre, Handle, Hora) */
.tweet-header-info {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important; /* Alineación perfecta de texto */
    width: 100% !important;
    margin-bottom: 2px !important; /* Pegadito al texto */
    padding: 0 !important;
    line-height: 1.2 !important;
}

/* Grupo de Info Usuario (Para que quepa todo en una línea) */
.user-info-group {
    display: flex !important; 
    align-items: baseline !important; 
    gap: 4px !important; /* Gap pequeño entre nombre y @ */
    flex-wrap: nowrap !important; /* Prohibido bajar de línea */
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    min-width: 0 !important;
}

/* Estilos de Texto del Header (Reducidos) */
.t-name { 
    font-weight: 700 !important; 
    color: #e7e9ea !important; 
    font-size: 14px !important; /* Tamaño X Estándar */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.verified-badge { color: #FFD700 !important; font-size: 0.8rem !important; flex-shrink: 0 !important; }

/* Handle y Hora en Gris y más pequeños */
.t-handle, .t-time, .t-dot { 
    color: #71767b !important; 
    font-size: 14px !important; /* Tamaño X Estándar */
    font-weight: 400 !important;
    white-space: nowrap !important; 
    flex-shrink: 0 !important; /* No permitir que se aplasten */
}

/* Menú 3 puntos */
.t-more-btn {
    background: transparent !important; border: none !important;
    color: #71767b !important; width: 20px !important; height: 20px !important; padding: 0 !important;
    margin-left: 10px !important; 
    display: flex !important; align-items: center !important; justify-content: center !important;
    flex-shrink: 0 !important;
}

/* 5. EL TEXTO (REDUCIDO Y NÍTIDO) */
.tweet-text-body {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin-top: -2px !important; /* Ajuste fino */
    margin-bottom: 0 !important;
    padding: 0 !important;
    
    /* TAMAÑO X EXACTO */
    font-size: 14px !important; 
    line-height: 1.4 !important; /* Lectura cómoda */
    color: #ffffff !important; /* Blanco puro */
    font-weight: 400 !important; /* Regular, no bold */
    
    white-space: pre-line !important; 
    overflow-wrap: break-word !important; 
    word-break: break-word !important;
}

/* Fix para párrafos internos */
.tweet-text-body p { margin: 0 !important; padding: 0 !important; display: inline !important; }

/* 6. MEDIA 1:1 */
.tweet-media-wrapper {
    display: flex !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    background-color: #000000 !important;
    border-radius: 12px !important;
    border: 1px solid #2f3336 !important;
    overflow: hidden !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    align-self: stretch !important;
}

.tweet-media-wrapper img, 
.tweet-media-wrapper video {
    width: 100% !important; height: 100% !important; 
    display: block !important; object-fit: contain !important;
    margin: 0 !important;
}

/* 7. Barra de Acciones */
.tweet-actions-bar {
    display: flex !important; justify-content: space-between !important;
    width: 100% !important; 
    padding-right: 0px !important; /* Alineado al borde derecho */
    box-sizing: border-box !important;
    margin-top: 8px !important;
    max-width: 100% !important;
}

.t-action {
    background: none !important; border: none !important; cursor: pointer !important;
    display: flex !important; align-items: center !important; gap: 5px !important;
    color: #71767b !important; font-size: 1rem !important; padding: 0 !important;
    flex: 1 !important; /* Distribución uniforme */
    justify-content: flex-start !important; /* Alineados a la izquierda de su "caja" */
}
/* Excepción para el último (Share) para que no se vaya muy lejos */
.t-action:last-child { justify-content: flex-end !important; flex: 0 !important; }

.t-action.applaud:hover, .t-action.applaud.active { 
    color: #FFD700 !important; text-shadow: 0 0 8px rgba(255, 215, 0, 0.4) !important; 
}
/* =========================================
   CARGA PROGRESIVA (BLUR-UP / FADE-IN)
   ========================================= */

/* 1. Estado inicial: Invisible */
.tweet-media-wrapper img,
.tweet-media-wrapper video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Medio segundo de suavidad */
    will-change: opacity;
}

/* 2. Estado cargado: Visible (Se activa con JS) */
.tweet-media-wrapper img.loaded,
.tweet-media-wrapper video.loaded {
    opacity: 1;
}
/* ========================================================= */
/*   FASE 1: ESTÉTICA "CYBER-GOLD" - TIPOGRAFÍA Y GLOW       */
/* ========================================================= */

/* 1. NOMBRE DE USUARIO (EL PROTAGONISTA) */
.t-name, .tv-username {
    color: #FFD700 !important; /* Amarillo Oro Puro */
    font-weight: 800 !important; 
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.45) !important; /* Glow */
}

/* 2. EL HANDLE (@usuario) (EL SECUNDARIO) */
.t-handle {
    color: #F0E68C !important; /* Kaki / Dorado pálido */
    font-weight: 400 !important;
    opacity: 0.85; 
    font-size: 0.9rem !important;
}

/* 3. HASHTAGS Y MENCIONES (INTERACTIVOS) */
.highlight-maku {
    color: #FFD700 !important;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 215, 0, 0.05);
    padding: 0 4px;
    border-radius: 4px;
}

.highlight-maku:hover {
    background: rgba(255, 215, 0, 0.2); 
    text-shadow: 0 0 8px #FFD700; 
    text-decoration: none !important;
}

/* 4. CUERPO DEL TEXTO (DESCANSO VISUAL) */
.tweet-text-body, .tv-description {
    color: #E0E0E0 !important; /* Blanco hueso */
    font-weight: 300 !important; 
    line-height: 1.6 !important; /* Más aire para leer mejor */
    font-size: 1rem !important;
    margin-top: 5px;
}

/* 5. FECHA / TIEMPO */
.t-time {
    color: #666 !important; 
    font-size: 0.8rem !important;
}
/* ========================================================= */
/*   FASE 1.5: PERFILES DE LUJO (MÓVIL & ESCRITORIO)         */
/* ========================================================= */

/* 1. NOMBRES DE PERFIL (GIGANTES Y BRILLANTES) */
.uni-text-data h2,      /* Nombre Principal Móvil */
.uni-top-name,          /* Nombre en la barrita superior Móvil */
.m1-name                /* Nombre en Escritorio */
{
    color: #FFD700 !important; /* Amarillo Oro */
    font-weight: 800 !important;
    letter-spacing: 1px;
    /* Glow un poco más intenso porque la letra es más grande */
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5) !important;
}

/* 2. HANDLES DE PERFIL (@usuario) */
#sheet-handle,          /* Handle Principal Móvil */
.uni-top-meta,          /* Handle Header Móvil */
.m1-handle              /* Handle Escritorio */
{
    color: #F0E68C !important; /* Dorado Pálido / Metálico */
    font-weight: 400 !important;
    opacity: 0.9;
}

/* 3. BIOGRAFÍA (TEXTO LIMPIO) */
#sheet-bio, 
.m1-bio {
    color: #E0E0E0 !important; /* Blanco Hueso */
    font-weight: 300 !important;
    line-height: 1.5 !important;
    font-size: 1rem !important;
}

/* 4. NÚMEROS DE ESTADÍSTICAS (SEGUIDORES) */
.uni-stats-row strong,
.m1-stats-row strong {
    color: #FFD700 !important; /* Los números en Oro */
    font-weight: 700 !important;
}

/* 5. PESTAÑAS DEL PERFIL (BOONIES, RESPUESTAS...) */
/* Texto de la pestaña activa */
.uni-tab.active, 
.m1-tab.active {
    color: #FFD700 !important;
    font-weight: 800 !important;
    /* La línea de abajo también dorada (Escritorio) */
    border-bottom-color: #FFD700 !important; 
}

/* La línea de abajo dorada (Móvil) */
.uni-tab.active::after {
    background: #FFD700 !important; 
}

/* 6. BOTÓN "EDITAR PERFIL" / "SEGUIR" */
.uni-edit-btn, 
.m1-action-btn {
    border: 1px solid #FFD700 !important; /* Borde Dorado */
    color: #FFD700 !important;           /* Texto Dorado */
    background: transparent !important;
    font-weight: 700 !important;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}

.uni-edit-btn:hover, 
.m1-action-btn:hover {
    background: rgba(255, 215, 0, 0.1) !important; /* Fondo suave al pasar mouse */
}
/* ========================================================= */
/*   FASE 2: ELEMENTOS VIVOS (AURA & NEÓN)                   */
/* ========================================================= */

/* --- A. ANIMACIÓN DE "RESPIRACIÓN" (EL LATIDO) --- */
@keyframes gold-breath {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); border-color: rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 15px 2px rgba(255, 215, 0, 0.1); border-color: rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); border-color: rgba(255, 215, 0, 0.4); }
}

/* --- B. APLICANDO EL AURA A LOS AVATARES --- */

/* 1. Avatar Pequeño en el Feed */
.tweet-avatar {
    border: 2px solid rgba(255, 215, 0, 0.3); /* Borde base */
    /* Animación lenta (3s) para que sea elegante, no estresante */
    animation: gold-breath 3s infinite ease-in-out;
    transition: transform 0.2s;
}

/* Efecto al pasar el mouse por el avatar */
.tweet-avatar:hover {
    transform: scale(1.1); /* Se agranda un poco */
    animation: none; /* Pausa el latido */
    box-shadow: 0 0 20px #FFD700; /* Brillo fijo intenso */
    border-color: #FFD700;
}

/* 2. Avatar Grande en Perfil (Escritorio y Móvil) */
.uni-avatar-container, 
.m1-avatar-wrapper {
    border: 3px solid #FFD700 !important; /* Borde más grueso */
    animation: gold-breath 4s infinite ease-in-out; /* Latido más profundo */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}


/* --- C. ICONOS DE ACCIÓN (EFECTO NEÓN SWITCH) --- */

/* Estado Base (Apagado / Metálico) */
.t-action, .social-btn {
    color: #888 !important; /* Gris metálico */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efecto rebote */
}

/* 1. APLAUSO / LIKE (Dorado Intenso) */
.t-action.like:hover i,
.t-action.like.active i,
.social-btn[data-action="applaud"]:hover i,
.social-btn.applauded i {
    color: #FFD700 !important;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FF4500; /* Doble brillo (Oro + Rojo fuego) */
    transform: scale(1.2);
}

/* 2. RESPONDER / REPLY (Cyan Tech) */
.t-action.reply:hover i,
.social-btn[data-action="reply"]:hover i {
    color: #00FFFF !important;
    text-shadow: 0 0 10px #00FFFF;
    transform: scale(1.2);
}

/* 3. COMPARTIR / RETWEET (Verde Matrix o Púrpura) */
/* Vamos a usar Verde Neón para indicar "Propagar" */
.t-action.retweet:hover i,
.t-action.share:hover i,
.social-btn[data-action="share"]:hover i {
    color: #00FF00 !important;
    text-shadow: 0 0 10px #00FF00;
    transform: rotate(15deg) scale(1.2); /* Pequeña rotación */
}


/* --- D. SEPARADORES FANTASMA (LASER FADE) --- */

.feed-card {
    /* Quitamos el borde sólido aburrido */
    border-bottom: 1px solid transparent !important;
    position: relative;
}

/* Creamos una línea de luz con gradiente */
.feed-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%; /* Empieza al 10% del ancho */
    width: 80%; /* Ocupa el 80% (centrado) */
    height: 1px;
    /* Gradiente: Transparente -> Oro Oscuro -> Transparente */
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}
/* ========================================================= */
/*   FASE 3: ENTORNO DE MANDO (MENÚS Y WIDGETS)              */
/* ========================================================= */

/* --- A. MENÚ IZQUIERDO (NAVEGACIÓN) --- */

.d-nav-btn {
    color: #888 !important; /* Estado inactivo: Gris apagado */
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 30px !important; /* Más redondeado */
    padding: 12px 25px !important;
}

/* Hover: El texto se enciende y aparece un fondo sutil */
.d-nav-btn:hover {
    color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.05) !important;
    transform: translateX(5px); /* Pequeño desplazamiento a la derecha */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Activo: Estado encendido total */
.d-nav-btn.active {
    color: #FFD700 !important;
    font-weight: 800 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.1) !important;
}

.d-nav-btn i {
    transition: transform 0.3s;
}
.d-nav-btn:hover i {
    transform: scale(1.2); /* El icono crece al pasar el mouse */
}


/* --- B. EL GATILLO "BONEAR" (BOTÓN PRINCIPAL) --- */

.desktop-compose-btn {
    /* Gradiente para dar volumen 3D */
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000 !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
    border: none !important;
    
    /* Sombra de luz intensa */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), inset 0 2px 0 rgba(255,255,255,0.4) !important;
    transition: all 0.2s !important;
    transform: scale(1);
}

.desktop-compose-btn:hover {
    transform: scale(1.05) !important; /* Crece */
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.7), inset 0 2px 0 rgba(255,255,255,0.4) !important; /* Brilla más */
    cursor: pointer;
}

.desktop-compose-btn:active {
    transform: scale(0.95) !important; /* Efecto de click */
}


/* --- C. COLUMNA DERECHA (WIDGETS TECH) --- */

/* 1. Las Cajas (Tendencias y Sugerencias) */
.desktop-card {
    /* Borde fino casi invisible, pero dorado */
    border: 1px solid rgba(255, 215, 0, 0.15) !important;
    background: #000 !important; /* Fondo negro puro */
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* Títulos de las cajas */
.desktop-card h3 {
    color: #E0E0E0 !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 1rem !important;
}

/* 2. Items de Tendencia (Efecto Escáner) */
.trend-item {
    transition: background 0.3s;
    border-left: 2px solid transparent; /* Preparar borde izquierdo */
}

.trend-item:hover {
    /* Gradiente horizontal sutil */
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.08), transparent) !important;
    border-left: 2px solid #FFD700; /* Línea indicadora a la izquierda */
}

.trend-meta { color: #666 !important; }
.trend-title { color: #fff !important; font-weight: 600; }


/* --- D. BUSCADOR (CÁPSULA) --- */

.desktop-search-bar {
    background: #050505 !important;
    border: 1px solid #333 !important;
    transition: all 0.3s ease;
}

/* Cuando le das click para escribir */
.desktop-search-bar:focus-within {
    border-color: #FFD700 !important; /* Borde dorado */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); /* Resplandor */
    background: #000 !important;
}

.desktop-search-bar i {
    color: #555 !important;
    transition: color 0.3s;
}
.desktop-search-bar:focus-within i {
    color: #FFD700 !important; /* La lupa se prende */
}