.rank-page {
    background: #060611;
}

.rank-hero {
    width: 1160px;
    padding-top: 43px;
    padding-bottom: 43px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    display: flex;
}

.rank-channel {
    width: 1160px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 7px;
    display: flex;
}

.rank-channel-label {
    color: #F12B9E;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.rank-channel-title {
    margin: 0;
    color: white;
    font-size: 34px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word;
}

.rank-channel-desc {
    color: #9994AD;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.rank-tabs {
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    display: flex;
    flex-wrap: wrap;
}

.rank-tab {
    padding: 7px 16px;
    background: #242138;
    overflow: hidden;
    border-radius: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}

.rank-tab--active {
    background: #F12B9E;
}

.rank-tab-text {
    color: #B4AFC4;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.rank-tab-text--active {
    color: white;
}

.poster-rank-badge {
    width: 43px;
    height: 34px;
    left: 0;
    top: 206px;
    position: absolute;
}

.poster-rank-bg-gold,
.poster-rank-bg-silver,
.poster-rank-bg-bronze,
.poster-rank-bg-dark {
    width: 43px;
    height: 34px;
    left: 0;
    top: 0;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.poster-rank-bg-gold {
    background-image: url(../images/r_1.png);
}

.poster-rank-bg-silver {
    background-image: url(../images/r_2.png);
}

.poster-rank-bg-bronze {
    background-image: url(../images/r_3.png);
}

.poster-rank-bg-dark {
    background-image: url(../images/r_4.png);
}

.poster-rank-text {
    width: 43px;
    height: 35px;
    left: 0;
    top: 0;
    position: absolute;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

@media (max-width: 767px) {
    .rank-page.page-shell {
        padding: 12px 16px;
        gap: 18px;
    }

    .rank-hero {
        width: 100%;
        padding: 0;
        gap: 18px;
    }

    .rank-channel {
        width: 100%;
        gap: 6px;
    }

    .rank-channel-title {
        font-size: 18px;
        line-height: 24px;
    }

    .rank-tabs {
        width: 100%;
        gap: 9px;
    }

    .rank-hero .card-grid {
        width: 100%;
    }

    .rank-hero .pagination {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .poster-rank-badge {
        width: 34px;
        height: 27px;
        left: 0;
        top: auto;
        bottom: 0;
    }

    .poster-rank-bg-gold,
    .poster-rank-bg-silver,
    .poster-rank-bg-bronze,
    .poster-rank-bg-dark {
        width: 34px;
        height: 27px;
    }

    .poster-rank-text {
        width: 34px;
        height: 28px;
        font-size: 14px;
        line-height: 20px;
    }

    .rank-hero .poster-card-title {
        font-family: "Noto Sans SC", "PingFang SC", sans-serif;
        font-weight: 700;
    }
}

