<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-title {
    height: 20px;
    width: 70%;
    margin-bottom: 10px;
}

.skeleton-line {
    height: 10px;
    margin-bottom: 8px;
}

.skeleton-thumbnail {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
}

.skeleton-thumbnail1 {
    height: 270px;
    margin-bottom: 10px;
}

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

    100% {
        background-position: 200px 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    background-size: 200% 100%;
}</pre></body></html>