html,
body {
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    position: relative;
    z-index: 99;
    scroll-behavior: smooth;
    background-color: var(--bg-color-1);
}


.back-to-top {
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

body::-webkit-scrollbar {
    display: none;
}


#copy-message {
    position: fixed;
    z-index: 999;
    bottom: 30%;
    width: 60px;
    height: 28px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    border: 1px solid #d9d9d9;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    border-radius: 20px;
}

.heading {
    position: relative;
    width: fit-content;
    z-index: 11;
}

.heading::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 8px;
    background-color: var(--bg-color-6);
    z-index: -1;
}


.num a {
    counter-increment: mvp-trend;
}

.num a .number::after {
    content: '0' counter(mvp-trend);
}


@media (min-width:768px) {}

@media (max-width:768px) {
    .game-text::-webkit-scrollbar {
        width: 4px;
    }
}

.star i.full {
    color: #F6CC22;
}

.star i {
    color: #E4E4E4;
}

.star i.partial {
    background: linear-gradient(to right, #F6CC22 var(--percent, 0%), #E4E4E4 var(--percent, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.trending-item a {
    position: relative;
}

.trending-item a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -24px;
    width: 1px;
    background: #E6E6E6;
}

@media (min-width:768px) {
    .trending-item a:nth-of-type(4n)::after {
        display: none;
    }

    .dt-like .trending-item a:nth-of-type(2n)::after {
        display: none;
    }
}

@media (max-width:767px) {
    .trending-item a:nth-of-type(3n)::after {
        display: none;
    }
}

@media (max-width:640px) {
    .trending-item a:nth-of-type(3n)::after {
        display: block;
    }

    .trending-item a:nth-of-type(2n)::after {
        display: none;
    }

    .trending-item a::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: -12px;
        width: 1px;
        background: #E6E6E6;
    }
}