/* SKELETON LOADER */
@keyframes shimmer {
    0%   { background-position: -700px 0; }
    100% { background-position: 700px 0; }
}
.skeleton {
    background: linear-gradient(90deg, #1f293d 25%, #2a3a54 50%, #1f293d 75%);
    background-size: 700px 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: 8px;
}
.skeleton-card {
    background: #151b2d;
    border: 1px solid #1f293d;
    border-radius: 12px;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0f19;
}
::-webkit-scrollbar-thumb {
    background: #1f293d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1a73e8;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
/* Desactivar scroll animado para evitar saltos lentos */
html {
    scroll-behavior: auto !important;
}

/* BARRA DE PROGRESO DE NAVEGACIÓN ESTILO NAVEGADOR CHROME NATIVO */
#loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #1a73e8; /* Azul Chrome */
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.8), 0 0 5px rgba(26, 115, 232, 0.5);
    z-index: 9999;
    width: 0%;
    opacity: 0;
    transition: width 0.3s cubic-bezier(0.08, 0.8, 0.15, 1), opacity 0.2s ease-in-out;
    pointer-events: none;
}
