@charset "utf-8";

::-webkit-scrollbar {
    width: 8px;
    height: fit-content;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: #555151;
    border-radius: 0px;
}

.nav-item {
    transition: 250ms ease-in-out;
    user-select: none;
}

.nav-item:hover {
    transform: translateY(-2px);
}

.activeSpecial {
    display: inline-block;
    background: -webkit-linear-gradient(left, red, orange, green, cyan, rgb(70, 70, 255), violet, orange, red);
    background-size: 1400px 250px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-timing-function: linear;
    animation-duration: 8s;
    animation-name: gradient;
    animation-iteration-count: infinite;
}

@keyframes gradient {
    0% {
        background-position: 0px 1400px;
    }

    100% {
        background-position: 1400px 0px;
    }
}

.gameList {
    margin: 0px;
}

.gameList div {
    margin: 10px;
}

.game {
    border: 1.5px solid rgba(238, 238, 238, 0.268);
    margin-bottom: 30px;
    height: 410px;
    background-color: rgb(39, 39, 39);
    border-radius: 20px;
    color: white;
    overflow: hidden;
    cursor: pointer;
}

.game .gameInfo {
    padding: 25px;
    position: relative;
}

.game a img {
    height: 120px;
    width: auto;
}

.game a video {
    position: absolute;
    left: 0;
    right: 0;
    top: 1px;
    z-index: 55;
}

.game .gameInfo a {
    text-decoration: none;
}

/* Title */
.game .gameInfo h4 {
    font-size: 17px;
    color: #05a3ff;
    margin-bottom: 20px;
}