html,
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    position: relative;
    z-index: 99;
}

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;
}

.game-text::-webkit-scrollbar,
.dt-text::-webkit-scrollbar {
    width: 6px;
    display: block;
}

.game-text::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 999px;
}

.dt-text::-webkit-scrollbar-thumb {
    background-color: #4f46e5;
    border-radius: 999px;
}

.game-text::-webkit-scrollbar-track{
    background: rgb(255 255 255 / 40%);
}
.dt-text::-webkit-scrollbar-track {
    background: #fff;
}

@media (min-width:768px) {
    .heading::after {
        left: 12px;
        width: calc(100% - 12px);
    }


}

@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;
}