.spp-player-profile {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #d3d3d3;
}

.spp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #046A38;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.spp-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(4, 106, 56, 0.7);
    border-radius: 10px;
}

.spp-player-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-left: 20px;
    border: 4px solid white;
    object-fit: cover;
    position: relative;
    z-index: 1;
    order: 2;
}

.spp-header .spp-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    order: 1;
}

.spp-header .spp-info h1 {
    margin: 0;
    font-size: 24px;
}

.spp-header .spp-info span {
    color: #ffffff;
    opacity: 0.9;
}

.spp-bio {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.spp-bio .spp-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #046A38;
}

.spp-bio .spp-content {
    color: #333;
}

.spp-stats {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.spp-stats .spp-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #046A38;
}

.spp-stats table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.spp-stats th, .spp-stats td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.spp-stats th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.spp-stats td {
    background-color: #ffffff;
}

.spp-team-flag {
    display: inline-block;
    width: 20px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
}

.spp-photo-gallery {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.spp-gallery-item {
    width: 200px;
    text-align: center;
}

.spp-gallery-photo {
    width: 180px;
    height: 180px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid #046A38;
    transition: transform 0.3s ease;
}

.spp-gallery-photo:hover {
    transform: scale(1.05);
}

.spp-photo-caption {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}