/* Skeleton Loader Base Styles */
.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    background-color: #121215;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.skeleton-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
}

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

.skeleton-text {
    width: 100%;
    height: 16px;
}

.skeleton-text-short {
    width: 40%;
    height: 16px;
}

/* Specific for matches */
.skeleton-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.skeleton-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 40%;
}

.skeleton-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.skeleton-vs {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
