/* Estilos complementarios */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #262626;
}

/* Selection */
::selection {
    background: rgba(194, 149, 56, 0.3);
    color: #fff;
}
