.game-info{
    padding: 15px;
    border-radius: 15px;
    background-color: var(--detail-bg-color);
}
.game-info .avatar{
    max-width: 100px;
    margin-right: 20px;
    border-radius: 15px;
}

.game-info .tag-area{
    margin-top: 20px;
    border-radius: 15px;
    color: var(--text-primary);
    padding: 20px;
    font-size: 1.2rem;
    background-color: var(--detail-info-bg-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.tag-area .tag-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5px 0;
}
.tag-area .tag-row .ico{
    margin-right: 10px;
    overflow: hidden;
}
.tag-area .tag-row .ico img{
    max-width: 2rem;
}
.tag-area .tag-row .label{
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    width: 8rem;
    overflow: hidden;
}
.tag-area .tag-row .value{
    display: inline-block;
    font-size: 1rem;
    width: 6rem;
}

.game-desc{
    font-size: 1.1rem;
    text-align: left;
    text-indent: 2rem;
    padding: 1rem;
}

.playBtn {
    border: none;
    padding: 20px;
    height: 2em;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    background: var(--header-bg-color);
    cursor: pointer;
    transition: all 450ms ease-in-out;
    box-shadow: var(--card-shadow);
}

.sparkle {
    fill: white;
    transition: all 800ms ease;
}

.text {
    font-weight: 600;
    color: white;
    font-size: medium;
}

.playBtn:hover {
    background: var(--hover-color);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.playBtn:hover .text {
    color: white;
}

.playBtn:hover .sparkle {
    fill: white;
    transform: scale(1.2);
}