/* LuongSonLive Frontend CSS v2.0 */

/* Shortcode Styles */
.luongsonlive-shortcode {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.luongsonlive-match-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.luongsonlive-match-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* League Info */
.match-league {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.league-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.league-name {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

/* Match Info */
.match-info {
    padding: 16px;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.team.home-team .team-score {
    font-size: 32px;
    font-weight: bold;
    color: #d63638;
}

.team.away-team .team-score {
    font-size: 32px;
    font-weight: bold;
    color: #d63638;
}

.team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.team-score {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.match-status-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-text {
    background: #d63638;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.match-time {
    font-size: 12px;
    color: #666;
}

/* Commentator */
.match-commentator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.commentator-icon {
    font-size: 18px;
}

.commentator-name {
    font-size: 13px;
    color: #666;
}

/* Actions */
.match-actions {
    text-align: center;
}

.watch-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* No Matches */
.luongsonlive-no-matches {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.luongsonlive-no-matches p {
    margin: 10px 0;
}

.luongsonlive-no-matches .admin-hint {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
}

.luongsonlive-no-matches .admin-hint a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
}

.luongsonlive-no-matches .admin-hint a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .match-teams {
        flex-direction: column;
    }
    
    .match-status-badge {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .team {
        flex-direction: row;
        width: 100%;
    }
    
    .team.home-team .team-score,
    .team.away-team .team-score {
        font-size: 24px;
    }
}

