body{
    /*background: url('https://clan.fastly.steamstatic.com/images/41316928/0fd85be5245219613d0c08d533f5a64f3f497fe2.png') repeat center top, #18225e;*/
    height: 100%;
    background-color: #0f1924;
    /*background-attachment: fixed; !* 背景图片固定 *!*/
}


.tag {
    background-color: rgba(14, 20, 27, .8);
    padding: 1px 8px;
    border-radius: 3px;
    font-size: 12px;
    transition: background-color 0.2s;
    text-decoration: none;
    margin-right: 5px;
    color: darkgray;
    cursor: pointer;
}
.info-section {
    margin-top: 10%;
}
.info-label {
    font-size: 12px;
    color: darkgray;
}

.highlight-text {
    color: #65bef2;
}
.tags-section{
    height: 100%;
    display: flex;
    flex-direction: column;
}




/******************推荐列表 带游戏，标签搜索功能********************/
.content-wrapper {
    margin-top: 40px;
    padding: 20px;
    background-image: linear-gradient(0deg, rgb(44, 48, 55) 0%, rgb(80, 95, 110) 100%);
    width: 100%;
    color: whitesmoke;
}

.Class-sidebar {
    width: 210px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, .25);
    padding: 20px;
}

.Class-selected-area {
    font-size: 12px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.Class-tag {
    background-color: rgba(255, 255, 255, .25);
    padding: 2px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.Class-tag .remove {
    cursor: pointer;
    font-weight: bold;
    color: #ccc;
}

.Class-dropdown {
    margin-bottom: 20px;
}

.Class-dropdown-title {
    display: flex !important;
    font-size: 16px;
    color: white;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    padding: 5px 0;
}

.arrow {
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(315deg);
    transition: 0.25s;
}

.Class-dropdown-title.active .arrow {
    transform: rotate(405deg);
}

.Class-dropdown-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    margin-left: 10px;
}

.Class-dropdown-content.open {
    max-height: 800px;
}

.Class-dropdown-item {
    padding: 6px 0;
    font-size: 14px;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: .2s;
}

.Class-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.Class-dropdown-item.active {

    border-left: 3px solid darkorange;
    background: rgba(255, 255, 255, 0.05);
}

.game-list {
    padding: 0 0 0 20px;
    flex: 1;
}

.game-cover {
    max-width: 210px;
    height: auto;
    object-fit: cover;
}

.game-title {
    font-size: 16px;
    font-weight: bold;
}

.tags span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 4px;
    margin-right: 4px;
    border-radius: 3px;
    font-size: 12px;
}

input[type="text"] {
    width: 100%;
    padding: 5px 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.gameContainer{
    margin-bottom: 10px;
    display: flex;
    box-shadow: 0 0 8px rgba(0, 0, 0, .5);
}

.gameContainer:hover {
    border: 1px solid #fff;
    box-shadow: 0 0 15px rgba(102, 192, 244, 0.3);
}