@font-face {
    font-family: "YouSheBiaoTiHei";
    src: url('./assets/ysbth.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    font-family: "Source Han Sans CN", "Microsoft YaHei", "Noto Sans SC", "PingFang SC", sans-serif;
}

body {
    background-image: url(./assets/background.png);
    background-color: white;
    background-repeat: no-repeat;
    background-size: contain;
}

.logo {
    padding: 40px 50px 27px 0;
    text-align: right;
}

.logo img {
    width: 278px;
    height: 84px;
}

.container {
    position: relative;
    background-color: white;
    margin: auto;
    height: 835px;
    width: 82%;
    box-shadow: 0 4px 60px rgba(55, 68, 77, .11);
    border-radius: 16px;
    padding: 0 50px 30px 50px;
    overflow-y: scroll;
}

.header {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 534px;
    height: 106px;
    background-image: url(./assets/header.png);
    background-size: contain;
    text-align: center;
    font-size: 66px;
    color: #FFFFFF;
    font-weight: 700;
    align-content: center;
}

.grid-container {
    display: grid;
    grid-template-columns: 120px 120px auto;
    gap: 45px 25px; 
    width: 100%;
    align-items: center;
    padding-top: 138px;
}

.title {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 24px;
    margin-bottom: -10px;
}

.title.text-right {
    padding-right: 25px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.avatar, .name, .score {
    z-index: 1;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    display: none;
}

.rank {
    position: relative;
}

.rank img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.name {
    font-size: 28.8px;
    font-weight: 500;
}

.score {
    font-family: 'YouSheBiaoTiHei';
    font-size: 36px;
}

.bar {
    background-color: #F6EFE7;
    height: 72px;
    margin-left: -85px;
    padding-left: 85px;
    padding-right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 28px;
    border-radius: 120px 9.6px 9.6px 120px;
}

.bar.gold {
    background-color: #FFF4D8;
}

.score-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #FBDFC4, #B79D82);
    clip-path: polygon(0 0, 100% 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
}

.score-bar-wrapper {
    position: absolute;
    left: 0;
    height: 100%;
    filter: 
        drop-shadow(2px 0px 17px rgba(222, 158, 89, 0.6))
        drop-shadow(10px 0px 38px rgba(213, 165, 93, 0.6));
    border-radius: 9.6px 0px 0px 9.6px;
}

.bar.gold .score-bar {
    background: linear-gradient(to right, #FFDF92, #FFC127);
}


