/* ─────────────────────────────────────────────
   THEFOOTBALL.LIVE - Desktop Styles
   ───────────────────────────────────────────── */

@media (min-width: 769px) {
    .app-container {
        padding: 0 32px;
    }
    
    .main-content {
        padding: 24px 0 100px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 17px;
    }
    
    .league-header {
        padding: 16px 24px;
    }
    
    .league-logo {
        width: 32px;
        height: 32px;
    }
    
    .league-name {
        font-size: 17px;
    }
    
    .match-card {
        padding: 16px 24px;
        transition: all 0.2s;
    }
    
    .match-card:hover {
        background: var(--bg-hover);
        transform: translateX(4px);
    }
    
    .team-logo {
        width: 32px;
        height: 32px;
    }
    
    .team-name {
        font-size: 16px;
        max-width: 200px;
    }
    
    .team-score {
        font-size: 22px;
        min-width: 28px;
    }
    
    .match-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .match-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}