/**
 * Auto Squad Page Styles
 */
.player-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6b 100%);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    border: 2px solid #4a90e2;
    transition: transform 0.2s, box-shadow 0.2s;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.player-card .position-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.player-card .player-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.player-card .player-team {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.player-card .player-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.player-card .player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.match-info {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.match-info .badge {
    min-width: 40px;
    padding: 0.25rem 0.5rem;
}

.match-info small {
    color: white !important;
    opacity: 0.9;
}

/* SEO Content Section */
.seo-content {
    line-height: 1.8;
    color: #333;
}

.seo-content p {
    margin-bottom: 1rem;
}

.seo-content strong {
    color: #1e3a5f;
    font-weight: 600;
}
