
.game_info {
    position: relative;
    margin: 15px 0;
}

.game-info-img {
    width: 100%;
    height: 20rem;
    border-radius: 1rem;
}

.game-info-mc {
    position: absolute;
    background-color: rgba(36, 36, 36, 0.45);
    inset: 0;
    border-radius: 0.426667rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-name {
    color: #ffffff;
    font-size: 1.8rem;
}

.play {
    width: 11.6rem;
    height: 3.2rem;
    border-radius: 2rem;
    margin-top: 1.5rem;
    background: linear-gradient(60deg, #0d6964 0%, #50c9c3 100%);
    animation: .89s ease-in-out 0s infinite normal none running scales
}

.pay-text {
    color: #ffffff;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 3.2rem;
}

.similar-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0.6rem;
}

.similar-list {
    padding: 1rem 0;
}
.sim-game-item {
    display: block;
    text-decoration: none;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    height: 11.5rem;
}

.my_star {
    position: absolute;
    background: url("../img/mc.svg") no-repeat;
    background-size: 100% 100%;
    bottom: 1rem;
    left: 50%;
    margin-left: -2.8rem;
    width: 5.6rem;
    height: 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    padding: 0 1rem;
}

.title {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0.6rem;
}

.desc {
    padding: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.6rem;
    text-indent: 1em;
    overflow: hidden;
}

.score {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0.6rem;
    margin-top: 2rem;
    align-items: center;
}

.score-title {
    font-size: 1.6rem;
    font-weight: bold;
}

.my_star2 {
    background: url("../img/mc.svg") no-repeat;
    background-size: 100% 100%;
    width: 5.6rem;
    height: 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    padding: 0 1rem;
}

.more {
    margin-bottom: 1.6rem;
}

.more-list {
    display: flex;
    flex-wrap: wrap;
}

.more-game-item {
    display: block;
    margin: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    width: unset;
    padding: 0.8rem 2.2rem;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 2.2rem;
}

.more-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0.6rem;
}

@keyframes scales {
    0%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}
