#div-background {
    background: linear-gradient(to left, #46adbd, #268cd5);
    height: 300px;
    margin-top: -100px;
}

#div-player-info {
    align-items: center;
    display: flex;
    gap: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -250px;
    width: 95%;
}

#div-player-card {
    align-items: center;
    border-radius: 25px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 100px;
    height: 400px;
    justify-content: center;
    width: 40%;
}

#div-player-name-icon {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

#div-player-icon {
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
    color: #555;
    display: flex;
    justify-content: center;
    width: 125px;
    height: 125px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

#div-player-icon img {
    width: 125px;
    height: 125px;
}

#p-first-joined-date {
    color: grey;
    font-size: 0.8rem;
}

#div-player-stats {
    border-radius: 25px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 400px;
    width: 60%;
}

#div-stats-header {
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    width: 95%;
}

#div-stat-cards {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 110px;
    border-radius: 25px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

.stat-card h6 {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin: 0;
}

.stat-card p:nth-child(2) {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.stat-card .stat-rank {
    margin: 0;
    margin-top: -5px;
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
}

.stat-rank {
    color: grey;
    font-size: 0.8rem;
}

.stat-first {
    border: 2px solid #CCAB00;
    color: #CCAB00;
}

.stat-second {
    border: 2px solid #557177;
    color: #557177;
}

.stat-third {
    border: 2px solid #CD7F32;
    color: #CD7F32;
}

#div-tournament-history {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

#div-tournament-history table {
    width: 75%;
}

#div-tournament-history a {
    color: #268cd5;
    text-decoration: none;
    transition: 0.1s ease-in;
}

#div-tournament-history a:hover {
    color: #46adbd;
    text-decoration: underline;
}

.first-place {
    background-color: #CCAB00 !important;
    color: white;
    font-weight: bold;
}

.second-place {
    background-color: #557177 !important;
    color: white;
    font-weight: bold;
}

.third-place {
    background-color: #CD7F32 !important;
    color: white;
    font-weight: bold;
}