/* _content/ReferenceAI/Components/Audio/AudioPlayer.razor.rz.scp.css */
/* ========================================
   CONTENEDOR PRINCIPAL DEL SISTEMA DE AUDIO
   ======================================== */
.audio-system-container[b-5vy0kwpvii] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;/* Ocupa toda la pantalla */
    z-index: 9998; /* Justo debajo del header */
    display: flex;
    flex-direction: column-reverse; /* Clave: Los items se apilan desde abajo */
    pointer-events: none;  /* No intercepta clicks por defecto *!*/

    /* *** FIX SCROLL: Prevenir propagación de scroll al body ***
       Cuando el usuario hace scroll dentro del AudioPlayer,
       esto evita que el scroll se propague al body (contenido de atrás).
       Complementa el bloqueo de scroll via JS (bodyScrollLock). */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
}

/* ========================================
   CONTROLES DEL REPRODUCTOR (antes .audio-player-container)
   ======================================== */
.audio-player-controls[b-5vy0kwpvii] {
    background: rgba(30, 30, 30, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 -1rem 2rem rgba(0, 0, 0, 0.7);
    padding: 0.75rem 1rem 0.75rem 1rem;
    /*border-top: 3px solid rgba(200, 200, 200, 1);*/
    z-index: 9999; 
    pointer-events: auto; /* CLAVE: Este componente siempre debe ser clickeable */
    touch-action: none;
}

/* Contenido centrado con max-width */
.audio-player-content[b-5vy0kwpvii] {
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /*gap: 1rem;*/
    position: relative;
}

/* Botones de control superior */
.close-btn-left[b-5vy0kwpvii] {
    position: absolute;
    /*background: rgba(100, 100, 255, 0.85);*/

    background: rgba(30, 30, 30, 1);
    top: -1.35rem;
    left: 0;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.close-btn-left:hover[b-5vy0kwpvii] {

    /*border-color: rgba(100, 100, 255, 0.85);*/
    /*color: white;*/
    /*transform: scale(1.1);*/
}

.collapse-btn[b-5vy0kwpvii] {
    position: absolute;   
    /*background: rgba(100, 100, 255, 0.85);*/

    background: rgba(30, 30, 30, 1);
    top: -1.35rem;
    right: 0;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.collapse-btn:hover[b-5vy0kwpvii] {

    /*border-color: rgba(100, 100, 255, 0.85);*/
    /*color: white;*/
    /*transform: scale(1.1);*/
}

/* Íconos más gruesos dentro de los botones */
.close-btn-left .mud-icon-root[b-5vy0kwpvii],
.collapse-btn .mud-icon-root[b-5vy0kwpvii] {
    font-weight: 900;
    stroke-width: 2;
}

/* Título del artículo */
.article-title[b-5vy0kwpvii] {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.4;
    padding-left: 2.5rem; /* Espacio para botón cerrar izquierdo más grande */
    padding-right: 2.5rem; /* Espacio para botón colapsar derecho más grande */
}

/* Controles principales */
.main-controls[b-5vy0kwpvii] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    /*margin-bottom: 0.5rem;*/
    padding-bottom: 0.75rem;
    /*border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);*/
}

.playback-buttons[b-5vy0kwpvii] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.control-btn[b-5vy0kwpvii] {
    padding: 0rem 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
}

/* Fila de progreso con botón de velocidad */
.progress-row[b-5vy0kwpvii] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Barra de progreso */
.progress-container[b-5vy0kwpvii] {
    flex: 1;
    padding: 0rem 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Barra de progreso clickeable */
.progress-bar[b-5vy0kwpvii] {
    width: 100%;
    height: 0.5rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

/* Fill visual (el gradiente que avanza) */
.progress-fill[b-5vy0kwpvii] {
    height: 100%;
    background: linear-gradient(to right, rgb(100, 181, 246), rgb(240, 98, 146));
    border-radius: 0.25rem;
    transition: width 0.085s linear;
    pointer-events: none; /* Los clicks pasan al contenedor padre */
}

.time-display[b-5vy0kwpvii] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Botón de velocidad */
.speed-btn[b-5vy0kwpvii] {
    position: absolute;
    right: 0;
    /*padding-right: 2rem ;*/
    background: rgba(30, 30, 30, 1); /* Azul oscuro */
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 3rem;
    text-align: center;
}

.speed-btn:hover:not(:disabled)[b-5vy0kwpvii] {
    /*background: rgba(25, 118, 210, 1);*/
    /*transform: scale(1.05);*/
}

.speed-btn.active[b-5vy0kwpvii] {
    background: rgba(67, 123, 197, 0.9); /* Verde más oscuro cuando está activo */
}

.speed-btn.active:hover[b-5vy0kwpvii] {
    /*background: rgba(46, 125, 50, 1);*/
}

.speed-btn:disabled[b-5vy0kwpvii] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Opciones de profundidad */
.depth-options[b-5vy0kwpvii] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0.7rem;
    /*border:solid 2px rgba(255, 255, 255, 1);*/
    overflow: clip;
    gap: 2.5px;
    /*background-color: rgba(255, 255, 255, 1);*/
}

@media (min-width: 768px) {
    .progress-container[b-5vy0kwpvii]{
        padding: 0 5rem;
    }
    .speed-btn[b-5vy0kwpvii] {
        /*padding: 0.4rem 0.7rem;*/
        font-size: 0.8rem;
    }
    .depth-options[b-5vy0kwpvii] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.depth-btn[b-5vy0kwpvii] {
    background: rgb(114, 114, 114);
    /*border: 1.5px solid rgb(175, 175, 175);*/
    border-radius: 0rem;
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
    font-size: 0.9rem;
}

.depth-btn.active[b-5vy0kwpvii] {
    background: rgb(145, 143, 143);
}

/* Toggle de observación */
.observacion-toggle[b-5vy0kwpvii] {
    background: rgb(114, 114, 114);
    border-radius: 0.7rem;
    /*border:solid 1.5px rgb(175, 175, 175);*/
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(0, 0, 0, 0.7);
    font-size:0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(42, 42, 42, 0.7);
    gap: 0.3rem;
}

.observacion-toggle.active[b-5vy0kwpvii] {
    background: rgb(114, 114, 114);
}

.check-icon[b-5vy0kwpvii] {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
}

/* Modo de reproducción automática */
.autoplay-mode[b-5vy0kwpvii] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
    padding: 0.75rem;
}

.autoplay-btn[b-5vy0kwpvii] {
    background: rgb(114, 114, 114);
    border-radius: 0.7rem;
    /*border:solid 2px rgba(255,255,255,1) ;*/
    padding: 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.autoplay-btn:hover[b-5vy0kwpvii] {
    /*background: rgba(255, 255, 255, 0.15);*/
}

.autoplay-btn.active[b-5vy0kwpvii] {
    background: rgb(114, 114, 114);
}

/* Indicador de carga */
.loading-indicator[b-5vy0kwpvii] {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0rem 0.3rem;
}
/* _content/ReferenceAI/Components/Audio/PlaylistPanel.razor.rz.scp.css */
/* ========================================
   PLAYLIST PANEL - NUEVA VERSIÓN
   ======================================== */

/* Panel principal */

/*.playlist-panel {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    max-height: 100%;*/
/*    position: relative;*/
/*    z-index: 1000;*/
/*    pointer-events: auto;*/
/*    overscroll-behavior: contain;*/
/*}*/

.playlist-inner-panel[b-ymvts1qnas] {
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 100%;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    overscroll-behavior: contain;
}



.playlist-panel.expanded[b-ymvts1qnas] {
    flex: 1;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.6);
    min-height: 0;
}

.playlist-panel.collapsed[b-ymvts1qnas] {
    flex: 0;
}

/* ========================================
   SOLAPA SEMICIRCULAR (sin cambios)
   ======================================== */
.playlist-tab[b-ymvts1qnas] {
    position: absolute;
    border-top: 2px solid rgba(255, 255, 255,1);
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 3rem;
    background: linear-gradient(135deg,
        hsl(225, 85%, 50%) 0%,
        hsl(265, 85%, 50%) 50%,
        hsl(275, 85%, 50%) 100%
    );
    border-radius: 4rem 4rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    color: white;
    font-weight: 600;
    box-shadow:
        0 -0.5rem 1rem rgba(0, 0, 0, 0.3),
        0 0 2rem rgba(147, 51, 234, 0.4);
    transition: all 0.3s;
    animation: tab-pulse-b-ymvts1qnas 2s ease-in-out infinite;
}

.playlist-tab:hover[b-ymvts1qnas] {
    transform: translateX(-50%) translateY(-0.3rem);
    box-shadow:
        0 -0.8rem 1.5rem rgba(0, 0, 0, 0.4),
        0 0 3rem rgba(147, 51, 234, 0.6);
}

@keyframes tab-pulse-b-ymvts1qnas {
    0%, 100% {
        box-shadow:
            0 -0.5rem 1rem rgba(0, 0, 0, 0.3),
            0 0 2rem rgba(147, 51, 234, 0.4);
    }
    50% {
        box-shadow:
            0 -0.5rem 1rem rgba(0, 0, 0, 0.3),
            0 0 3rem rgba(147, 51, 234, 0.7);
    }
}

.tab-badge[b-ymvts1qnas] {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: bold;
}

/* ========================================
   🆕 HEADER DEL PLAYLIST
   ======================================== */
.playlist-header[b-ymvts1qnas] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(25, 25, 25, 1);
}

.playlist-title[b-ymvts1qnas] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.playlist-close-btn[b-ymvts1qnas] {
    background: rgba(30, 30, 30, 1);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
}

.playlist-close-btn:hover[b-ymvts1qnas] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ========================================
   🆕 CONTROLES DE NAVEGACIÓN Y FILTROS
   ======================================== */
.playlist-controls[b-ymvts1qnas] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(25, 25, 25, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* Tabs de feeds */
.feed-tabs[b-ymvts1qnas] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.feed-tab[b-ymvts1qnas] {
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.feed-tab:hover[b-ymvts1qnas] {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
}

.feed-tab.active[b-ymvts1qnas] {
    background: linear-gradient(135deg,
        rgba(147, 51, 234, 0.4),
        rgba(147, 51, 234, 0.6)
    );
    border-color: rgba(147, 51, 234, 0.8);
    box-shadow: 0 0 1rem rgba(147, 51, 234, 0.4);
}

/* Botones de filtro */
.playlist-filters[b-ymvts1qnas] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.filter-btn[b-ymvts1qnas] {
    background: rgba(25, 25, 25, 1);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0.5rem;
    padding: 0.3rem 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/*.filter-btn:hover {*/
/*    background: rgba(75, 75, 75, 1);*/
/*    border-color: rgba(255, 255, 255, 0.45);*/
/*}*/

.filter-btn.active[b-ymvts1qnas] {
    background: rgb(61, 61, 61);
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
}

.filter-btn.active:hover[b-ymvts1qnas] {
    /*background: rgba(76, 175, 80, 0.4);*/
}

/* ========================================
   LISTA DE ITEMS
   ======================================== */
.playlist-items[b-ymvts1qnas] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    
}

.playlist-items[b-ymvts1qnas]::-webkit-scrollbar {
    width: 8px;
}

.playlist-items[b-ymvts1qnas]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-items[b-ymvts1qnas]::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.5);
    border-radius: 4px;
}

/* ========================================
   🆕 ITEM INDIVIDUAL - ESTADOS VISUALES
   ======================================== */
.playlist-item[b-ymvts1qnas] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(45, 45, 45, 0.9);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

/* 🆕 ESTADO: YA REPRODUCIDA (desaturada) */
.playlist-item.already-played[b-ymvts1qnas] {

    border: 2.5px solid rgba(100, 100, 100, 0.4);
    /*opacity: 0.4;*/
    /*filter: grayscale(0.6);*/
    /*pointer-events: auto; !* Sigue siendo clickeable por si quiere volver *!*/
}

.playlist-item.already-played .item-selector[b-ymvts1qnas] {
    /*border-color: rgba(100, 100, 100, 0.3);*/
    /*background: rgba(50, 50, 50, 0.5);*/
}

.playlist-item.already-played:hover[b-ymvts1qnas] {
    /*opacity: 0.6;*/
    /*filter: grayscale(0.4);*/
}

/*!* 🆕 ESTADO: ACTUAL (reproduciéndose ahora) *!*/
/*.playlist-item.current {*/
/*    background: rgba(60, 40, 80, 0.5);*/
/*}*/

.playlist-item.active[b-ymvts1qnas] {
    background: linear-gradient(135deg,
    rgba(147, 51, 234, 0.3) 0%,
    rgba(229, 66, 150, 0.45) 25%,
    rgba(59, 130, 246, 0.35) 50%,
    rgba(236, 72, 153, 0.35) 75%,
    rgba(147, 51, 234, 0.3) 100%
    );
    background-size: 300% 300%;
    animation: gradient-rotate-b-ymvts1qnas 13s ease-in-out infinite;
    animation-delay: var(--item-delay);
}

@media (max-width: 768px) {
    animation: gradient-rotate 2s ease-in-out infinite;
    animation-delay: var(--item-delay)/6;[b-ymvts1qnas]
}

@keyframes gradient-rotate-b-ymvts1qnas {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}


/*.playlist-item.current.active::before {*/
/*    box-shadow: 0 0 2rem rgba(147, 51, 234, 0.6);*/
/*}*/

/* 🆕 ESTADO: PENDIENTE (normal, por reproducir) */
.playlist-item.pending[b-ymvts1qnas] {
    /* Estilos por defecto */
}

/* BORDE ANIMADO - solo en items activos */
.playlist-item.current[b-ymvts1qnas]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    padding: 4px;
    background: repeating-linear-gradient(
        90deg,
        hsl(225, 85%, 60%) 0%,
        hsl(265, 85%, 65%) 12.5%,
        hsl(275, 85%, 60%) 25%,
        hsl(320, 85%, 65%) 37.5%,
        hsl(275, 85%, 60%) 50%,
        hsl(265, 85%, 65%) 62.5%,
        hsl(225, 85%, 60%) 75%,
        hsl(200, 85%, 65%) 87.5%,
        hsl(225, 85%, 60%) 100%
    );
    background-size: 200% 100%;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    animation:
        slide-gradient-b-ymvts1qnas 4s linear infinite,
        border-glow-b-ymvts1qnas 2s ease-in-out infinite;
    animation-delay: var(--item-delay, 0s);
    pointer-events: none;
    will-change: background-position;
}

/* Item inactivo - borde gris simple */
.playlist-item.inactive[b-ymvts1qnas] {
    border: 2.5px solid rgba(100, 100, 100, 0.4);
}

.playlist-item:hover[b-ymvts1qnas] {
    transform: translateX(0.25rem);
    /*background: rgba(50, 50, 50, 0.9);*/
}

@keyframes slide-gradient-b-ymvts1qnas {
    from { background-position: 0% 0%; }
    to { background-position: 100% 0%; }
}

@keyframes border-glow-b-ymvts1qnas {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* ========================================
   🆕 CÍRCULO SELECTOR CLICKEABLE
   ======================================== */
.item-selector[b-ymvts1qnas] {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2.5px solid rgba(150, 150, 150, 0.5);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(30, 30, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2; /* Por encima del item para capturar clicks */
    cursor: pointer;
}

.item-selector:hover[b-ymvts1qnas] {
    transform: scale(1.15);
    border-color: hsl(250, 85%, 70%);
}

.item-selector.selected[b-ymvts1qnas] {
    background: radial-gradient(circle,
        hsl(250, 85%, 70%) 0%,
        hsl(240, 90%, 60%) 100%
    );
    border-color: hsl(320, 90%, 65%);
    box-shadow:
        0 0 1.5rem hsla(320, 90%, 65%, 0.5),
        inset 0 0 0.5rem rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.selector-check[b-ymvts1qnas] {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    animation: check-pop-b-ymvts1qnas 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes check-pop-b-ymvts1qnas {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   🆕 BOTÓN DE PLAY OVERLAY
   ======================================== */
.play-button-overlay[b-ymvts1qnas] {
    position: absolute;
    right: 2rem;
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(147, 51, 234, 0.5);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    z-index: 1;
}

.playlist-item:hover .play-button-overlay[b-ymvts1qnas] {
    opacity: 1;
    transform: scale(1.1);
}

.playlist-item.already-played .play-button-overlay[b-ymvts1qnas] {
    /*background: rgba(100, 100, 100, 0.2);*/
    /*border-color: rgba(100, 100, 100, 0.5);*/
}

/* ========================================
   INFORMACIÓN DEL ITEM
   ======================================== */
.item-info[b-ymvts1qnas] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.item-title[b-ymvts1qnas] {
    color: white;
    /*padding-right: 3rem;*/
    /*font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;*/
    font-size: 1.2rem;
    font-weight: bold;
    /*text-transform: uppercase;*/
    line-height: 1.4;
    margin: 0;
}

.item-badge[b-ymvts1qnas] {
    /*display: inline-flex;*/
    /*align-items: center;*/
    /*gap: 0.3rem;*/
    /*background: linear-gradient(135deg,*/
    /*    rgba(34, 197, 94, 0.2),*/
    /*    rgba(34, 197, 94, 0.3)*/
    /*);*/
    color: rgb(34, 197, 94);
    /*padding: 0.25rem 0.75rem;*/
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    margin-right: 1rem;
    /*border: 1px solid rgba(34, 197, 94, 0.4);*/
}

/* ========================================
   ESTADO VACÍO
   ======================================== */
.playlist-empty[b-ymvts1qnas] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    gap: 1rem;
}

.playlist-empty p[b-ymvts1qnas] {
    margin: 0;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (min-width: 767px) {
    .playlist-inner-panel[b-ymvts1qnas]
    {
        width: 60vw;   
        margin-left:auto;
        margin-right: auto;
    }
    .playlist-filters[b-ymvts1qnas]
    {
        padding-left: 5rem;
        padding-right: 5rem;   
       
    }
    .playlist-controls[b-ymvts1qnas]
    {
        border-radius: 0 0 2rem 2rem;
    }
    .playlist-items[b-ymvts1qnas]
    {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 767px) {
    .playlist-item[b-ymvts1qnas] {
        padding: 1rem 1.25rem;
    }

    .item-title[b-ymvts1qnas] {
        font-size: 0.95rem;
    }

    .playlist-tab[b-ymvts1qnas] {
        width: 7rem;
    }

    /*.feed-tabs {*/
    /*    grid-template-columns: 3fr;*/
    /*}*/

    .feed-tab[b-ymvts1qnas] {
        padding: 0.6rem 1rem;
    }

    /*.playlist-filters {*/
    /*    grid-template-columns: 2fr;*/
    /*}*/

    .filter-btn span[b-ymvts1qnas] {
        font-size: 0.8rem;
    }

    .play-button-overlay[b-ymvts1qnas] {
        opacity: 1; /* En móvil siempre visible (no hay hover) */
        background: rgba(147, 51, 234, 0.15);
    }
}

/* ========================================
   ACCESIBILIDAD
   ======================================== */
/*@media (prefers-reduced-motion: reduce) {*/
/*    .playlist-item.active::before {*/
/*        animation: none;*/
/*    }*/

/*    .playlist-tab {*/
/*        animation: none;*/
/*    }*/

/*    * {*/
/*        transition-duration: 0.01ms !important;*/
/*        animation-duration: 0.01ms !important;*/
/*    }*/
/*}*/
/* _content/ReferenceAI/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-mkg9auylib] {
    position: relative;
    min-height: -webkit-fill-available; /* iOS Safari */
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top, 0px);
}

/* En modo fullscreen (PWA instalada), usar toda la pantalla */
@media (display-mode: fullscreen), (display-mode: standalone) {
    .page-container[b-mkg9auylib] {
        min-height: 100vh;
        padding-top: 0;
    }
}

/* ====================================================================
   EPIC HEADER - Degradado + Shadow + Scroll Animation
   ==================================================================== */

.epic-header[b-mkg9auylib] {
    /* Degradado: Negro → Gris → Negro (efecto profesional) */
    background: linear-gradient(180deg, 
        rgb(0, 0, 0) 0%,        /* Negro absoluto arriba */
        rgb(35, 35, 35) 30%,    /* Transición a gris */
        rgb(37, 37, 37) 40%,    /* Gris más claro en el centro */
        rgb(20, 20, 20) 100%    /* Negro absoluto abajo */
    );

    /* Shadow fuerte debajo del header */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);

    /* Altura normal del header */
    height: auto;
    /* Display flex para alinear contenido */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* 🚀 OPTIMIZACIÓN: Transiciones más rápidas y específicas */
    transition: padding 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
    /* 🚀 Aceleración GPU */
    transform: translate3d(0, 0, 0);
    /* 🚀 Contenedorización */
    contain: layout style;
}

/* Estado SCROLLED - Header comprimido */
.epic-header.scrolled[b-mkg9auylib] {
    padding-top: max(env(safe-area-inset-top), 0.5rem) !important;
    padding-bottom: 0.5rem !important;

    /* Shadow más pronunciado al scrollear */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);

    /* Degradado más sutil */
    background: linear-gradient(180deg, 
        rgb(10, 10, 10) 0%, 
        rgb(25, 25, 25) 100%);
}

/* Título principal */
.header-title[b-mkg9auylib] {
    font-size: 1.5rem;
    font-weight: bold;
    color: aliceblue;
    font-family: 'Trebuchet MS';
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Título en estado scrolled - más pequeño */
.scrolled .header-title[b-mkg9auylib] {
    font-size: 1.1rem;
    margin-bottom: 0 !important;
}

/* Tagline */
.header-tagline[b-mkg9auylib] {
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    color: aliceblue;
    opacity: 1;
    max-height: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tagline en estado scrolled - OCULTO */
.scrolled .header-tagline[b-mkg9auylib] {
    opacity: 0;
    max-height: 0;
    margin-top: 0 !important;
    transform: translateY(-10px);
}

/* Logo - transición de tamaño */
.header-logo[b-mkg9auylib] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo más pequeño al scrollear */
.scrolled .header-logo[b-mkg9auylib] {
    width: 32px !important;
    height: 32px !important;
}

@media (min-width: 768px) {
    .scrolled .header-logo[b-mkg9auylib] {
        width: 38px !important;
        height: 38px !important;
    }
}

/* Espaciador también se ajusta 
.header-spacer {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*/
.scrolled .header-spacer[b-mkg9auylib] {
    width: 32px !important;
}

@media (min-width: 768px) {
    .scrolled .header-spacer[b-mkg9auylib] {
        width: 38px !important;
    }
}

/* Animación de entrada del header */
@keyframes headerSlideDown-b-mkg9auylib {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.epic-header[b-mkg9auylib] {
    animation: headerSlideDown-b-mkg9auylib 0.6s ease-out;
}

/* ====================================================================
   HEADER OFFSET - Espaciador para header fijo
   ==================================================================== */

/* Div que ocupa el espacio del header fijo - misma altura exacta que el header */
.header-offset[b-mkg9auylib] {
    /* Cálculo: padding-top + contenido aproximado + padding-bottom */
    height: calc(max(env(safe-area-inset-top), 2.5rem) + 85px);
    width: 100%;
}

/* En móvil, contenido ligeramente más chico */
@media (max-width: 768px) {
    .header-offset[b-mkg9auylib] {
        height: calc(max(env(safe-area-inset-top), 2.5rem) + 80px );
    }
}

/* ====================================================================
   HEADER LAYOUT - Logo izquierda, Título centrado
   ==================================================================== */

.header-layout[b-mkg9auylib] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

/* Contenedor del logo (izquierda) */
.header-logo-container[b-mkg9auylib] {
    display: flex;
    align-items: center;
    padding-left: 1rem; /* Margen del borde izquierdo */
}

/* Logo responsive - 15% más grande */
.header-logo[b-mkg9auylib] {
    width: 55px;        /* 36px + 15% ≈ 41px */
    height: 55px;
    object-fit: contain;
    border-radius: 9px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Logo un poco más grande en desktop */
@media (min-width: 768px) {
    .header-logo[b-mkg9auylib] {
        width: 51px;    /* 44px + 15% ≈ 51px */
        height: 51px;
        border-radius: 11px;
    }

    .header-logo-container[b-mkg9auylib] {
        padding-left: 1.5rem;
    }
}

/* Efecto hover sutil */
.header-logo:hover[b-mkg9auylib] {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4)) brightness(1.15);
    cursor: pointer;
}

/* Contenedor del título (centro absoluto) */
.header-title-container[b-mkg9auylib] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Centrado absoluto en la pantalla */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Espaciador derecho para balance */
.header-spacer[b-mkg9auylib] {
    width: 41px; /* Mismo ancho que el logo en móvil */
}

@media (min-width: 768px) {
    .header-spacer[b-mkg9auylib] {
        width: 51px; /* Mismo ancho que el logo en desktop */
    }
}

/* Animación de entrada */
@keyframes logoFadeIn-b-mkg9auylib {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header-logo[b-mkg9auylib] {
    animation: logoFadeIn-b-mkg9auylib 0.6s ease-out;
}

main[b-mkg9auylib] {
    flex: 1;
}

.sidebar[b-mkg9auylib] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mkg9auylib] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mkg9auylib]  a, .top-row[b-mkg9auylib]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mkg9auylib]  a:hover, .top-row[b-mkg9auylib]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mkg9auylib]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mkg9auylib] {
        justify-content: space-between;
    }

    .top-row[b-mkg9auylib]  a, .top-row[b-mkg9auylib]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-mkg9auylib] {
        flex-direction: row;
    }

    .sidebar[b-mkg9auylib] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mkg9auylib] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mkg9auylib]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mkg9auylib], article[b-mkg9auylib] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mkg9auylib] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mkg9auylib] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.page-container[b-mkg9auylib] {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.background-video[b-mkg9auylib] {
    position: fixed;
    top: 0;
    left: 0; 
     object-fit:fill;
    /* object-position: center;  */
    background-color: rgb(43, 43, 43); 
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.content-container[b-mkg9auylib] {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0rem 1.3rem;

    /* 🚀 OPTIMIZACIÓN DE SCROLL PERFORMANCE */
    will-change: scroll-position;
    transform: translate3d(0, 0, 0);
    -webkit-overflow-scrolling: touch;
    contain: layout;
}

/* 📱 Mobile: full width con padding */
@media (max-width: 767px) {
    .content-container[b-mkg9auylib] {
        max-width: 50rem;
    }
}

/* 💻 Desktop/Tablets: ancho basado en altura del viewport */
@media (min-width: 768px) {
    .content-container[b-mkg9auylib] {
        /* 🎯 AGRESIVO: Ancho = min(500px, 55% del alto del viewport) */
        /* Esto hace que incluso en monitores de alta resolución con escalado */
        /* el feed se mantenga compacto y proporcional */
        max-width: min(500px, 55vh);
    }
}

/* 🖥️ Monitores muy anchos: límite un poco más alto pero igual restrictivo */
@media (min-width: 1400px) {
    .content-container[b-mkg9auylib] {
        /* En pantallas ultra-anchas, límite de 550px */
        max-width: min(550px, 55vh);
    }
}

.app-bar-safe-area[b-mkg9auylib] {
    padding-top: env(safe-area-inset-top);
    box-sizing: border-box;
}
/* _content/ReferenceAI/Components/Layout/NavMenu.razor.rz.scp.css */
.nav-container[b-12tx46afpk] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Espacio entre botones */
}

.nav-button[b-12tx46afpk] {
    /* Estilos de fuente y texto */
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;

    /* --- ESTILOS SINCRONIZADOS --- */
    background-color: rgba(160, 160, 160, 0.4); /* Color base correcto */
    border: 1.5px solid white; /* Borde correcto */
    /* --- FIN DE ESTILOS SINCRONIZADOS --- */

    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;

    display: flex;
    align-items: center;
}

/* Estado Hover Y Estado Seleccionado (cuando la ruta está activa) */
.nav-button:hover[b-12tx46afpk],
.nav-button.active[b-12tx46afpk] {
    background-color: rgba(80, 80, 80, 0.4); /* Color hover/activo correcto */
    color: white;
}

/* Estado Click (mientras se presiona el botón) */
.nav-button:active[b-12tx46afpk] {
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.3); /* Resplandor */
}

/* --- Estilos para los íconos (se mantienen igual) --- */
.bi[b-12tx46afpk] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-12tx46afpk] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-12tx46afpk] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-12tx46afpk] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}
/* _content/ReferenceAI/Components/MyComponents/ArticleCard.razor.rz.scp.css */
[b-t2sj246bfe] .interactive-card {
    cursor: pointer;
    /* 🚀 OPTIMIZACIÓN: Usar transform3d para aceleración GPU y transiciones más rápidas */
    transform: translate3d(0, 0, 0);
    transition: transform .08s ease-out;
    -webkit-tap-highlight-color: transparent;
    background-color: rgba(31, 31, 31, 1) !important;
    border: 1px solid rgba(200, 200, 200, 0.5) !important;
    border-radius: 13px !important;
    box-shadow: -5px -5px 15px rgb(29, 111, 182) !important;
    /* 🚀 Preparar para animaciones futuras */
    will-change: transform;
    /* 🚀 Contenedorización para mejor performance */
    contain: layout style paint;
    max-width: 38vw;
    margin-left: auto;
    margin-right: auto;

}

[b-t2sj246bfe] .mud-typography.mud-typography-body1 {
    opacity: 0.77 !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

[b-t2sj246bfe] .mud-typography.mud-typography-h6 {
    opacity: 0.90 !important;
    /*color: white !important;*/
    font-size: 20px !important;
    font-weight: 600 !important;
}

[b-t2sj246bfe] .interactive-card.is-expanded {
    background-color: rgba(31, 31, 31, 1) !important;
}

/* Contenido de paneles de expansión */
[b-t2sj246bfe] .mud-expand-panel .mud-expand-panel-content {
    padding-bottom: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

[b-t2sj246bfe] .interactive-card .mud-expand-panel .mud-panel-expanded {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

[b-t2sj246bfe] .mud-expand-panel .mud-expand-panel-header {
    padding-left: 0;
    padding-right: 0;
}

/* Leve "lift" en hover (desktop) */
[b-t2sj246bfe] .interactive-card:hover {
    transform: translateY(-2px);
}



/* Botón primary (variant=Filled) más sutil dentro de la card */
[b-t2sj246bfe] .interactive-card .mud-button-root.mud-button-filled.mud-button-filled-primary {
    background-color: color-mix(in srgb, var(--mud-palette-primary)50%, rgb(30, 30, 30) 50%) !important;
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 90%, rgb(25, 25, 25) 10%) !important;
}

/* ====================================================================
   BARRITA DE IMPORTANCIA - Superior
   ==================================================================== */

.importance-bar-container[b-t2sj246bfe] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(40, 40, 40, 0.3);
    border-radius: 13px 13px 0 0;
    overflow: hidden;
    z-index: 5;
}

.importance-bar[b-t2sj246bfe] {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(220, 38, 38, 1) 0%,    /* Rojo intenso */
        rgba(239, 68, 68, 1) 50%,   /* Rojo medio */
        rgba(248, 113, 113, 1) 100% /* Rojo claro */
    );
    border-radius: 13px 13px 0 0;
    min-width: 2rem; /* Ancho mínimo garantizado */
    transition: width 0.3s ease-out;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* ====================================================================
   FECHA - Centrada y arriba de la card
   ==================================================================== */

.article-date[b-t2sj246bfe] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 1);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.8px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem; /* Alineado a la izquierda */
    width: fit-content;
}



/* Responsive - Fecha más pequeña en móvil */
/* Responsive - Botones más pequeños en móvil */
@media (max-width: 767px) {
   [b-t2sj246bfe] .interactive-card {
       max-width: 100%; 
       width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .article-date[b-t2sj246bfe] {
        padding: 0.25rem 0.6rem;
        font-size: 11px;
        margin-bottom: 0.4rem;
    }
    .bottom-action-buttons[b-t2sj246bfe] {
        bottom: 0.5rem;
        right: 0.5rem;
        gap: 0.5rem;
    }

    .action-btn[b-t2sj246bfe] {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        min-height: 2rem;
    }

    .action-icon[b-t2sj246bfe] {
        font-size: 1rem;
    }
}

/* ====================================================================
   BOTONES DE ACCIÓN (Audio y Compartir) - Esquina inferior derecha
   ==================================================================== */

/* Contenedor de botones */
.bottom-action-buttons[b-t2sj246bfe] {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: row;
    gap: 0.625rem; /* 10px - Espacio uniforme entre botones */
    align-items: center;
    z-index: 10;
}

/* 🚀 OPTIMIZACIÓN: Botones más eficientes */
.action-btn[b-t2sj246bfe] {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
    border-radius: 50%;
    background: rgb(89, 78, 217);
    border: 2px solid rgba(250, 250, 250, 0.55);
    /* 🚀 Reemplazar backdrop-filter costoso con background sólido */
    /*background: rgba(100, 80, 120, 0.85);*/
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 🚀 Transición más rápida y específica */
    transition: transform 0.15s ease-out, background-color 0.15s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* 🚀 Aceleración GPU */
    transform: translate3d(0, 0, 0);
}

.action-btn:hover[b-t2sj246bfe] {
    /*transform: translate3d(0, 0, 0) scale(1.1);*/
    /*background: rgba(120, 90, 140, 0.9);*/
    /*border-color: rgba(170, 130, 215, 0.82);*/
}

/* Estado activo del botón de audio */
.audio-btn.active[b-t2sj246bfe] {
    /*background: rgba(16, 185, 129, 0.4);  !* Verde esmeralda suave *!*/
    /*border-color: rgba(16, 185, 129, 0.8);*/
    /*box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);*/
    /*animation: pulse 2s infinite;*/
}

.audio-btn.active:hover[b-t2sj246bfe] {
    /*background: rgba(16, 185, 129, 0.6);*/
    /*border-color: rgba(16, 185, 129, 1);*/
}

/* Efecto al hacer click en compartir */
.share-btn:active[b-t2sj246bfe] {
    /*background: rgba(16, 185, 129, 0.6);*/
    /*border-color: rgba(16, 185, 129, 0.9);*/
    /*transform: scale(0.95);*/

    /* 🚀 OPTIMIZACIONES DE RENDIMIENTO PARA SCROLL */
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout style paint;
}

/* Iconos dentro de los botones */
.action-icon[b-t2sj246bfe] {
    font-size: 20px;      /* 20px - Tamaño del icono */
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animación de pulso para audio activo */
@keyframes pulse-b-t2sj246bfe {
    /*0%, 100% {*/
    /*    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);*/
    /*}*/
    /*50% {*/
    /*    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);*/
    /*}*/
}



.article-image-container[b-t2sj246bfe] {
    width: 100%;
    /*aspect-ratio: 16/9;*/
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: rgba(40, 40, 40, 0.5);
}

.article-cover-image[b-t2sj246bfe] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interactive-card:hover .article-cover-image[b-t2sj246bfe] {
    transform: scale(1.05);
}
/* _content/ReferenceAI/Components/MyComponents/AudioBannerCTA.razor.rz.scp.css */
/* ====================================================================
   AUDIO CTA BANNER - Banner llamativo para modo podcast
   ==================================================================== */

.audio-cta-banner[b-ci68uwtklq] {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.95) 0%,
        rgba(45, 38, 52, 0.95) 50%,
        rgba(40, 40, 40, 0.95) 100%);
    border: 2px solid rgba(140, 110, 180, 0.5);
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(140, 110, 180, 0.15);
}

.audio-cta-banner:hover[b-ci68uwtklq] {
    transform: translateY(-4px);
    border-color: rgba(140, 110, 180, 0.7);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(140, 110, 180, 0.3);
}

.audio-cta-banner:active[b-ci68uwtklq] {
    transform: translateY(-2px);
}

/* Glow animado de fondo */
.banner-glow[b-ci68uwtklq] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(140, 110, 180, 0.08) 0%,
        transparent 70%
    );
    animation: glowPulse-b-ci68uwtklq 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glowPulse-b-ci68uwtklq {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Contenedor del contenido */
.banner-content[b-ci68uwtklq] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Emoji auriculares (posición absoluta a la izquierda) */
.emoji-audio[b-ci68uwtklq] {
    position: absolute;
    left: 0.35rem;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    animation: bounceAudio-b-ci68uwtklq 2s ease-in-out infinite;
}

@keyframes bounceAudio-b-ci68uwtklq {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-5px) rotate(-10deg);
    }
}

/* Contenedor de texto (centrado absoluto) */
.banner-text-container[b-ci68uwtklq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

/* Título del banner */
.banner-title[b-ci68uwtklq] {
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(140, 110, 180, 0.25);
    margin: 0;
}

.banner-subtitle[b-ci68uwtklq] {
    display: inline-block;
    background: linear-gradient(135deg, #9d7fc9 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 900;
    animation: shimmer-b-ci68uwtklq 3s ease-in-out infinite;
}

@keyframes shimmer-b-ci68uwtklq {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Icono ecualizador */
.banner-icon[b-ci68uwtklq] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.equalizer-icon[b-ci68uwtklq] {
    font-size: 1.5rem !important;
    color: #9d7fc9;
    filter: drop-shadow(0 2px 4px rgba(140, 110, 180, 0.4));
    animation: equalizerBounce-b-ci68uwtklq 1s ease-in-out infinite;
}

@keyframes equalizerBounce-b-ci68uwtklq {
    0%, 100% {
        transform: scaleY(1);
    }
    25% {
        transform: scaleY(1.2);
    }
    50% {
        transform: scaleY(0.8);
    }
    75% {
        transform: scaleY(1.1);
    }
}

/* Responsive - Tablets */
@media (min-width: 768px) {
    .audio-cta-banner[b-ci68uwtklq] {
        padding: 1.5rem 1.5rem;
    }

    .emoji-audio[b-ci68uwtklq] {
        left: 1.5rem;
        font-size: 3rem;
    }

    .banner-title[b-ci68uwtklq] {
        font-size: 1.1rem;
    }

    .banner-subtitle[b-ci68uwtklq] {
        font-size: 1.2rem;
    }

    .equalizer-icon[b-ci68uwtklq] {
        font-size: 1.8rem !important;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .audio-cta-banner[b-ci68uwtklq] {
        padding: 1.5rem 2rem;
    }

    .emoji-audio[b-ci68uwtklq] {
        left: 2rem;
        font-size: 3.5rem;
    }

    .banner-title[b-ci68uwtklq] {
        font-size: 1.2rem;
    }

    .banner-subtitle[b-ci68uwtklq] {
        font-size: 1.3rem;
    }
}

/* Accessibility - Reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
    .audio-cta-banner[b-ci68uwtklq],
    .emoji-container[b-ci68uwtklq],
    .emoji-pointer[b-ci68uwtklq],
    .banner-subtitle[b-ci68uwtklq],
    .equalizer-icon[b-ci68uwtklq],
    .banner-glow[b-ci68uwtklq] {
        animation: none;
    }

    .audio-cta-banner:hover[b-ci68uwtklq] {
        transform: none;
    }
}
/* _content/ReferenceAI/Components/MyComponents/ChangeBackgroundButton.razor.rz.scp.css */
.change-bg-button[b-2xpzy1bxzv] {
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    color: white;
    border: 1.5px solid white;
    font-weight: bold;
    text-transform: uppercase;
    
    background-color: rgba(160, 160, 160, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.change-bg-button:hover[b-2xpzy1bxzv] {
    background-color: rgba(80, 80, 80, 0.4);
}

.change-bg-button:active[b-2xpzy1bxzv] {
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.3); /* Resplandor al hacer clic */
}
/* _content/ReferenceAI/Components/MyComponents/FeedbackBanner.razor.rz.scp.css */
.feedback-banner-glow[b-6fazhape3g] {
position: relative;
background: rgba(40, 40, 40, 0.3);
border-radius: 16px;
padding: 20px;
margin: 24px 0;
overflow: hidden;
border: 2px solid rgba(255, 255, 255, 0.5);
}

.glow-effect[b-6fazhape3g] {
/*position: absolute;*/
/*top: -50%;*/
/*left: -50%;*/
/*width: 200%;*/
/*height: 200%;*/
/*background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);*/
/*animation: rotate 8s linear infinite;*/
}

@keyframes rotate-b-6fazhape3g {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.banner-inner[b-6fazhape3g] {
position: relative;
z-index: 1;
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.beta-section[b-6fazhape3g] {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: rgba(193, 110, 241, 0.3);
border-radius: 24px;
border: 1px solid rgba(206, 180, 252, 0.5);
}

.rocket[b-6fazhape3g] {
font-size: 22px;
animation: bounce-b-6fazhape3g 2s ease-in-out infinite;
}

@keyframes bounce-b-6fazhape3g {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}

.beta-text[b-6fazhape3g] {
color: #e0e7ff;
font-weight: 700;
font-size: 14px;
letter-spacing: 1px;
}

.message-section p[b-6fazhape3g] {
margin: 0 0 4px 0;
color: #d1d5db;
font-size: 16px;
    font-style: italic;
}

.cta-link[b-6fazhape3g] {
color: #c4b5fd;
font-weight: 800;
text-decoration: underline;
text-underline-offset: 4px;
font-size: 15px;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 4px;
}

.cta-link:hover[b-6fazhape3g] {
color: #c4b5fd;
text-decoration-thickness: 2px;
transform: translateX(3px);
}

@media (max-width: 640px) {
.banner-inner[b-6fazhape3g] {
flex-direction: column;
align-items: flex-start;
}
}
/* _content/ReferenceAI/Components/MyComponents/MenuOpcionesDeNoticiasV2.razor.rz.scp.css */
/* Contenedor principal del menú - estilo del botón de cambiar fondo */
.menu-feed-container[b-z38xoa7629] {
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    /*background-color: rgba(160, 160, 160, 0.4);*/
    /*backdrop-filter: blur(3px);*/
    border: 2px solid white;
    border-radius: 0.375rem;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    
    /* 📱 Por defecto (móvil): filas verticales */
    flex-direction: column;
}

/* 💻 Desktop: columnas horizontales */
@media (min-width: 640px) {
    .menu-feed-container[b-z38xoa7629] {
        flex-direction: row;
    }
}

/* Estilos de cada opción del menú */
.menu-feed-option[b-z38xoa7629] {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hover state para opciones NO seleccionadas */
.menu-feed-option:not(.selected):hover[b-z38xoa7629] {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Estado seleccionado */
.menu-feed-option.selected[b-z38xoa7629] {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

/* Efecto al hacer click */
.menu-feed-option:active[b-z38xoa7629] {
    transform: scale(0.98);
}

/* _content/ReferenceAI/Components/MyComponents/MisionPrismaInteractive.razor.rz.scp.css */
/* ====================================================================
   CONTENEDOR PRINCIPAL
   ==================================================================== */

.mision-prisma-container[b-mq11v98zkm] {
    position: relative;
    overflow: hidden;
    /* La altura es automática ahora, sin transiciones complejas */
}

.mision-prisma-content[b-mq11v98zkm] {
    /* Contenedor interno para padding */
}

/* ====================================================================
   BLOQUES DE CONTENIDO CON ÍCONOS
   ==================================================================== */

.content-block[b-mq11v98zkm] {
    margin-bottom: 18px;
    animation: fadeIn-b-mq11v98zkm 0.3s ease;
}

.icon-text-row[b-mq11v98zkm] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.icon[b-mq11v98zkm] {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px; /* Alineación visual con texto */
}

@keyframes fadeIn-b-mq11v98zkm {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================================================
   BANNER TÍTULO "¿QUÉ ES LUMEN AI?"
   ==================================================================== */

.prisma-title-banner[b-mq11v98zkm] {
    position: relative;
    width: 100%;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    margin: 0;
    background: transparent;
    border: none;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 3rem;
}

.prisma-title[b-mq11v98zkm] {
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    font-size: 1.2rem;
    font-weight: 630;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

/* Responsive título */
@media (min-width: 640px) {
    .prisma-title[b-mq11v98zkm] {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    .prisma-title[b-mq11v98zkm] {
        font-size: 1.6rem;
    }
}

/* ====================================================================
   BOTÓN DE CERRAR (X)
   ==================================================================== */

.prisma-close-button[b-mq11v98zkm] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.prisma-close-button:hover[b-mq11v98zkm] {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.prisma-close-button:active[b-mq11v98zkm] {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.7);
}

.prisma-close-button:focus[b-mq11v98zkm] {
    outline: 2px solid rgba(59, 130, 246, 0.6);
    outline-offset: 2px;
}

.prisma-close-icon[b-mq11v98zkm] {
    width: 1rem;
    height: 1rem;
    fill: none;
}

@media (max-width: 640px) {
    .prisma-close-button[b-mq11v98zkm] {
        width: 2.25rem;
        height: 2.25rem;
    }

    .prisma-close-icon[b-mq11v98zkm] {
        width: 1.125rem;
        height: 1.125rem;
    }
}

/* ====================================================================
   BOTÓN "VER MÁS" / "VER MENOS"
   ==================================================================== */

.expand-toggle-button[b-mq11v98zkm] {
    /*background: rgba(255, 255, 255, 0.15);*/
    /*border: 1.5px solid rgba(255, 255, 255, 0.4);*/
    /*border-radius: 8px;*/
    color: white;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expand-toggle-button:hover[b-mq11v98zkm] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.expand-toggle-button:active[b-mq11v98zkm] {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .expand-toggle-button[b-mq11v98zkm] {
        padding: 12px 32px;
        font-size: 15px;
    }
}
/* _content/ReferenceAI/Components/MyComponents/OrderByRelevanceButton.razor.rz.scp.css */
/* 🎯 Contenedor del botón de ordenamiento */
.order-button-container[b-b091opizpw] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.75rem 0;
}

/* 🎯 Botón pill toggle para ordenar por relevancia */
.pill-toggle-relevance[b-b091opizpw] {
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50px;
    padding: 0.5rem 1rem; /* Más bajo que los botones del menú (8px vs 12px) */
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    white-space: nowrap;
}

.pill-toggle-relevance:hover[b-b091opizpw] {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.pill-toggle-relevance.active[b-b091opizpw] {
    background: rgba(255, 255, 255, 0.2);
    /*border-color: rgba(255, 255, 255, 0.4);*/
    color: white;
}

.pill-toggle-relevance.active:hover[b-b091opizpw] {
    background: rgba(255, 255, 255, 0.25);
}

.pill-toggle-relevance:active[b-b091opizpw] {
    transform: scale(0.95);
}
/* _content/ReferenceAI/Components/MyComponents/PrismaBannerCTA.razor.rz.scp.css */
/* ====================================================================
   PRISMA CTA BANNER - Banner para agregar a la pantalla de inicio
   ==================================================================== */

.prisma-cta-banner[b-0vjd5hyn0z] {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%); /* Negro satinado */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(139, 127, 255, 0.12);
}

.prisma-cta-banner:hover[b-0vjd5hyn0z] {
    transform: translateY(-5px);
    border-color: rgba(139, 127, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(139, 127, 255, 0.25);
}

/* Glow animado de fondo (inspirado en Lumen) */
.banner-glow[b-0vjd5hyn0z] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 127, 255, 0.12) 0%, transparent 60%);
    animation: glowPulse-b-0vjd5hyn0z 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glowPulse-b-0vjd5hyn0z {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Contenido del banner - SIEMPRE VERTICAL */
.banner-content[b-0vjd5hyn0z] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

/* Logo de Prisma */
.prisma-logo[b-0vjd5hyn0z] {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
    animation: floatLogo-b-0vjd5hyn0z 5s ease-in-out infinite;
}

@keyframes floatLogo-b-0vjd5hyn0z {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Contenedor de texto */
.banner-text-container[b-0vjd5hyn0z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Título del banner - TAMAÑO AJUSTADO */
.banner-title[b-0vjd5hyn0z] {
    font-size: 1.8rem; /* Reducido desde 2rem */
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Degradado para la palabra LUMEN - Colores luminosos del icono */
.prisma-gradient[b-0vjd5hyn0z] {
    display: inline-block;
    background: linear-gradient(45deg, #77E9FF, #FFB380, #FF88FF, #6BFBFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: prismaShimmer-b-0vjd5hyn0z 4s ease-in-out infinite;
    filter: brightness(1.2);
}

@keyframes prismaShimmer-b-0vjd5hyn0z {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtítulo */
.banner-subtitle[b-0vjd5hyn0z] {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 300px;
}

/* Botón para agregar */
.prisma-add-button[b-0vjd5hyn0z] {
    background: #1450e7; /* Violeta más oscuro y azulado */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px; /* Bordes redondeados */
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 64, 173, 0.3);
}

.prisma-add-button:hover[b-0vjd5hyn0z] {
    background: #2157e5; /* Vio Un poco más claro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 34, 173, 0.4);
}

.prisma-add-button:active[b-0vjd5hyn0z] {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(8, 42, 178, 0.3);
}

/* --- Modal iOS - Overlay --- */
.ios-modal-overlay[b-0vjd5hyn0z] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-0vjd5hyn0z 0.3s ease-out;
    padding: 1rem;
}

@keyframes fadeIn-b-0vjd5hyn0z {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- Modal iOS - Contenido --- */
.ios-modal-content[b-0vjd5hyn0z] {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    border: 2px solid rgba(139, 127, 255, 0.3);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(139, 127, 255, 0.2);
    animation: slideUp-b-0vjd5hyn0z 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideUp-b-0vjd5hyn0z {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- Modal Header --- */
.ios-modal-header[b-0vjd5hyn0z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ios-modal-logo[b-0vjd5hyn0z] {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(139, 127, 255, 0.4));
}

.ios-modal-title[b-0vjd5hyn0z] {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
}

.ios-modal-subtitle[b-0vjd5hyn0z] {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
    max-width: 360px;
}

/* --- Pasos de instalación --- */
.ios-instructions-steps[b-0vjd5hyn0z] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ios-step[b-0vjd5hyn0z] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ios-step:hover[b-0vjd5hyn0z] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 127, 255, 0.3);
    transform: translateX(4px);
}

.ios-step-number[b-0vjd5hyn0z] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B7FFF 0%, #6B5FDD 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(139, 127, 255, 0.4);
}

.ios-step-content[b-0vjd5hyn0z] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ios-step-content p[b-0vjd5hyn0z] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.ios-step-content strong[b-0vjd5hyn0z] {
    color: #8B7FFF;
    font-weight: 700;
}

/* --- Ícono de compartir iOS --- */
.ios-share-icon[b-0vjd5hyn0z] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    background: rgba(0, 122, 255, 0.1);
    border: 2px solid rgba(0, 122, 255, 0.3);
    border-radius: 12px;
    animation: pulseIcon-b-0vjd5hyn0z 2s ease-in-out infinite;
}

@keyframes pulseIcon-b-0vjd5hyn0z {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(0, 122, 255, 0);
    }
}

.ios-share-icon svg[b-0vjd5hyn0z] {
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
}

/* --- Botón cerrar modal --- */
.ios-modal-close-btn[b-0vjd5hyn0z] {
    width: 100%;
    background: linear-gradient(135deg, #8B7FFF 0%, #6B5FDD 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 127, 255, 0.4);
}

.ios-modal-close-btn:hover[b-0vjd5hyn0z] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 127, 255, 0.6);
}

.ios-modal-close-btn:active[b-0vjd5hyn0z] {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(139, 127, 255, 0.4);
}

/* --- Responsive - Tablets y Desktop --- */
@media (min-width: 768px) {
    .ios-modal-content[b-0vjd5hyn0z] {
        padding: 2.5rem 2rem;
    }

    .ios-modal-title[b-0vjd5hyn0z] {
        font-size: 1.75rem;
    }

    .ios-step-content p[b-0vjd5hyn0z] {
        font-size: 1rem;
    }
}

/* --- Accessibility - Reducir animaciones --- */
@media (prefers-reduced-motion: reduce) {
    .ios-modal-overlay[b-0vjd5hyn0z],
    .ios-modal-content[b-0vjd5hyn0z],
    .ios-step[b-0vjd5hyn0z],
    .ios-share-icon[b-0vjd5hyn0z],
    .ios-modal-close-btn[b-0vjd5hyn0z] {
        animation: none;
    }

    .ios-step:hover[b-0vjd5hyn0z] {
        transform: none;
    }

    .ios-modal-close-btn:hover[b-0vjd5hyn0z] {
        transform: none;
    }
}
/* _content/ReferenceAI/Components/MyScoopedButton.razor.rz.scp.css */
[b-ipyjx24ke8] .custom {
    background-color: red;
    border-color: red;
    margin: 100px;
}
/* _content/ReferenceAI/Components/Pages/Home.razor.rz.scp.css */
.philosophy-container[b-fcerz95yjf] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.philosophy-container.expanded[b-fcerz95yjf] {
    max-height: 120px;
}
@media (min-width: 767px) {
    .content-container[b-fcerz95yjf] {
        max-width: 45vw;
        margin-left: auto;
        margin-right: auto;
    }
}
/* _content/ReferenceAI/Components/Pages/NoticiaDetalle.razor.rz.scp.css */
/* ====================================================================
   NOTICIA DETALLE - Modo Inmersivo
   ==================================================================== */

/* Fondo vibrante con colores Lumen luminosos */
.noticia-detalle-container[b-n9vdwn7zbh] {
    min-height: 100vh;
    background: linear-gradient(135deg,
        #1a1a2e 0%,      /* Azul oscuro base */
        #2d1b3d 20%,     /* Morado */
        #1a3045 40%,     /* Azul cyan */
        #3d1b3d 60%,     /* Morado intenso */
        #1a2540 80%,     /* Azul */
        #1a1a2e 100%     /* Azul oscuro base */
    );
    background-size: 400% 400%;
    animation: gradientShift-b-n9vdwn7zbh 5s ease infinite;
    position: relative;
    overflow-x: hidden;
}

@keyframes gradientShift-b-n9vdwn7zbh {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glow ambiental vibrante - CENTRADO Y MÁS NOTORIO */
.noticia-detalle-container[b-n9vdwn7zbh]::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center,
        rgba(119, 233, 255, 0.3) 0%,       /* Cyan brillante */
        rgba(255, 179, 128, 0.22) 20%,     /* Naranja melocotón */
        rgba(255, 136, 255, 0.18) 40%,     /* Rosa vibrante */
        transparent 70%);
    animation: glowRotate-b-n9vdwn7zbh 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glowRotate-b-n9vdwn7zbh {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Contenedor del artículo - protagonista */
.article-wrapper[b-n9vdwn7zbh] {
    position: relative;
    z-index: 1;
    max-width: 65rem;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    animation: fadeInUp-b-n9vdwn7zbh 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    opacity: 0;
}

@keyframes fadeInUp-b-n9vdwn7zbh {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sombra dramática para el card */
.article-wrapper[b-n9vdwn7zbh]  .interactive-card {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(119, 233, 255, 0.15),
        0 0 120px rgba(255, 136, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-wrapper[b-n9vdwn7zbh]  .interactive-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(119, 233, 255, 0.2),
        0 0 140px rgba(255, 136, 255, 0.15);
}

/* Contenedor del botón - centrado debajo de la card */
.back-button-container[b-n9vdwn7zbh] {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

/* Botón para volver - ahora relativo */
.fab-back-button[b-n9vdwn7zbh] {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #77E9FF, #FF88FF);
    border: none;
    border-radius: 50%;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(119, 233, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: fabEntrance-b-n9vdwn7zbh 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes fabEntrance-b-n9vdwn7zbh {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fab-back-button:hover[b-n9vdwn7zbh] {
    transform: scale(1.1) rotate(-5deg);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(119, 233, 255, 0.5);
}

.fab-back-button:active[b-n9vdwn7zbh] {
    transform: scale(0.95);
}

.fab-back-button svg[b-n9vdwn7zbh] {
    width: 28px;
    height: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Loading spinner inmersivo */
.loading-container[b-n9vdwn7zbh] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Mensaje de error elegante */
.error-container[b-n9vdwn7zbh] {
    max-width: 40rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.error-message[b-n9vdwn7zbh] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.error-button[b-n9vdwn7zbh] {
    background: linear-gradient(135deg, #77E9FF, #FF88FF);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(119, 233, 255, 0.3);
}

.error-button:hover[b-n9vdwn7zbh] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(119, 233, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .article-wrapper[b-n9vdwn7zbh] {
        padding: 1.5rem 1rem 2rem;
    }

    .back-button-container[b-n9vdwn7zbh] {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .fab-back-button[b-n9vdwn7zbh] {
        width: 56px;
        height: 56px;
    }

    .fab-back-button svg[b-n9vdwn7zbh] {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .article-wrapper[b-n9vdwn7zbh] {
        padding: 1rem 0.75rem 1.5rem;
    }

    .back-button-container[b-n9vdwn7zbh] {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .fab-back-button[b-n9vdwn7zbh] {
        width: 52px;
        height: 52px;
    }
}
/* _content/ReferenceAI/Components/PrismaBackground/PrismaBackground.razor.rz.scp.css */
/* PrismaBackground.razor.css
   Fondo animado: color homogéneo por fotograma, variando tono e intensidad.
   Paleta inspirada en Prisma IA: azul → violeta → magenta → retorna a azul 
   
   🎯 FALLBACK ROBUSTO: Nunca muestra púrpura si algo falla */

/* Capa de fondo: ocupa toda la pantalla y no intercepta clics */
.prisma-bg[b-8mn2naeqkj]{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  
  /* 🎯 FALLBACK 1: Color base azul oscuro (siempre se carga primero) */
  background: hsl(230 75% 55%);  /* Azul profundo - NUNCA púrpura */
  
  /* 🎯 FALLBACK 2: Animación CSS clásica (funciona en todos los browsers) */
  animation: simple-bg-shift-b-8mn2naeqkj 20s ease-in-out infinite;
  will-change: background-color;
}

/* Animación simple que funciona en TODOS los browsers (sin Houdini) */
@keyframes simple-bg-shift-b-8mn2naeqkj {
    0%{ background: hsl(245 98% 57%); }
    33% { background: hsl(252 95% 60%); }  /* azul */
   
   66%  { background: hsl(257, 93%, 71%); } /* azul-violeta */  /* violeta suave */
  100% {background: hsl(245 98% 57%);}  /* azul */
}

/* 🚀 UPGRADE: Si el browser soporta Houdini, usa animación premium */
/*@supports (background: hsl(from white h s l)) {*/
/*  */
/*  !* Houdini: propiedades animables - INICIAL EN AZUL (no púrpura) *!*/
/*  @property --h {*/
/*    syntax: '<number>';*/
/*    initial-value: 230;  !* 🎯 AZUL (era 265 púrpura antes) *!*/
/*    inherits: false;*/
/*  }*/
/*  @property --l {*/
/*    syntax: '<number>';*/
/*    initial-value: 55;*/
/*    inherits: false;*/
/*  }*/

/*  .prisma-bg{*/
/*    --h: 245;  !* 🎯 Empieza en AZUL *!*/
/*    --s: 98;*/
/*    --l: 57;*/
/*    background: hsl(var(--h) calc(var(--h)*1%) calc(var(--l)*1%));*/
/*    animation: prisma-hue-premium 18s linear infinite, prisma-light-premium 10s ease-in-out infinite;*/
/*  }*/

/*  !* Animación premium con transiciones más suaves *!*/
/*  @keyframes prisma-hue-premium {*/
/*    0%   { --h: 245;--s:98;--l:57;}  !* azul *!*/
/*    33%  { --h: 252;--s:95;--l:60;}  !* azul-violeta *!*/
/*    66%  { --h: 254;--s:96;--l:51;}  !* violeta suave *!*/
/*    100% { --h: 245;--s:98;--l:57;}  !* azul *!*/
/*  }*/

  /*@keyframes prisma-light-premium {*/
  /*  0%,100%,66%,33% { --l: 55; }*/
  /*  50%     { --l: 65; }*/
  /*}*/
}

/* Accesibilidad: respeta preferencia de menos animaciones */
@media (prefers-reduced-motion: reduce){
  /*.prisma-bg{ */
  /*  animation: none !important;*/
  /*  background: hsl(230 75% 55%) !important;  !* Azul estático *!*/
  /*}*/
}
