.maple-game-ratings {
    display: flex;
    gap: 10px;
    /* margin: 10px 0; */
}

.maple-game-ratings a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.05);
}

.maple-game-ratings a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.maple-game-ratings a.active {
    background-color: rgba(0, 0, 0, 0.1);
}

.maple-game-ratings a.click-animation {
    animation: clickEffect 0.3s ease;
}

@keyframes clickEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.maple-game-ratings .count {
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.maple-game-ratings i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* 展示用点赞数样式 */
.maple-game-ratings-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    color: #666;
}

.maple-game-ratings-count i {
    font-size: 1rem;
    margin-right: 2px;
}

.maple-game-ratings-count .count {
    font-weight: normal;
} 