/* Loading Skeleton Styles */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Skeleton Card */
.skeleton-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.skeleton-title {
    width: 60%;
    height: 24px;
    margin-bottom: 15px;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-text-short {
    width: 80%;
    height: 16px;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Schedule Skeleton */
.skeleton-schedule-card {
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.skeleton-time {
    width: 120px;
    height: 50px;
    border-radius: 8px;
}

.skeleton-team {
    width: 140px;
    height: 80px;
    border-radius: 8px;
}

.skeleton-vs {
    width: 40px;
    height: 30px;
    border-radius: 4px;
}

/* Article Skeleton */
.skeleton-article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.skeleton-article-image {
    width: 100%;
    height: 250px;
}

.skeleton-article-content {
    padding: 25px;
}

.skeleton-article-title {
    width: 80%;
    height: 28px;
    margin-bottom: 15px;
}

.skeleton-article-text {
    width: 100%;
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-article-meta {
    width: 40%;
    height: 14px;
    margin-top: 15px;
}

/* Gallery Skeleton */
.skeleton-gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.skeleton-gallery-image {
    width: 100%;
    height: 100%;
}

/* Sports Card Skeleton */
.skeleton-sport-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.skeleton-sport-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.skeleton-sport-name {
    width: 60%;
    height: 24px;
    margin: 0 auto;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.loading-container p {
    color: #666;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

