.lineup-section {
    margin: 30px 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f3b77;
    margin-bottom: 30px;
}

.lineup-container {
    display: flex;
    gap: 20px;
}

.team-lineup {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f3b77;
    text-align: center;
    margin-bottom: 20px;
}

.player-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.player-card {
    width: 250px;
    background: linear-gradient(145deg, #ffffff, #f1f3f5);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.player-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.player-name a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1f3b77;
    text-decoration: none;
}

.player-name a:hover {
    text-decoration: underline;
}

.player-position {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.stat .label {
    font-weight: bold;
    color: #555;
}

.stat .value {
    color: #333;
    font-size: 1rem;
}
