/* Enhanced matches loading animation */
.matches-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-secondary);
    min-height: 200px;
    animation: fadeIn 0.5s ease-in-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(1, 190, 110, 0.2);
    border-top: 4px solid #01BE6E;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(1, 190, 110, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.matches-loading p {
    font-size: 1.1rem;
    color: #01BE6E;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

