@keyframes pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.animate-pop {
    animation: pop 0.3s ease-in-out;
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.skeleton {
    background: linear-gradient(90deg, #2d2d2d 25%, #3d3d3d 50%, #2d2d2d 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #FFD93D #1F1F1F;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #1F1F1F;
}

*::-webkit-scrollbar-thumb {
    background: #FFD93D;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #FFED4E;
}