/* Skeleton loaders- show placeholder shapes while data loads */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.10) 37%, rgba(255,255,255,0.04) 63%);
    background-size: 400% 100%;
    animation: skel-shimmer 1.4s ease infinite;
    border-radius: 6px;
    color: transparent;
    user-select: none;
    pointer-events: none;
}

@keyframes skel-shimmer {
    0%   { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
}

.skeleton-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.skeleton-line {
    height: 14px;
    margin: 6px 0;
}

.skeleton-line.short { width: 35%; }
.skeleton-line.medium { width: 60%; }
.skeleton-line.long { width: 90%; }

.skeleton-banner {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.skeleton-pill {
    display: inline-block;
    height: 22px;
    width: 60px;
    border-radius: 11px;
    margin-right: 6px;
}
