.game-video-player:hover .custom-video-controls {
    opacity: 1;
}

.game-video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0);
    display: none;
    z-index: 1;
    cursor: pointer;
}

.game-video.active {
    display: block;
}

.hero-video-play {
    position: relative;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    cursor: pointer;
    height: 112px;
    width: 112px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.4);
    /*box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);*/
}

.custom-play-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 17.71%, rgba(255, 255, 255, .12) 100%), rgba(255, 255, 255, .01);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.custom-play-btn i {
    font-size: 24px;
    color: #fff;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.custom-play-btn i.fa-pause {
    margin-left: 0;
}

.hero-video-play:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.hero-video-play:hover .custom-play-btn {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 17.71%, rgba(255, 255, 255, .18) 100%), rgba(255, 255, 255, .05);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-video-play:hover .custom-play-btn i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.custom-play-btn:before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .1) 100%), linear-gradient(0deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .05));
    border-radius: inherit;
    content: "";
    inset: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
    position: absolute;
}

.hero-video-play:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    /*background: transparent;*/
    /*border: 2px solid rgba(255, 255, 255, 0.05);*/
    /*box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);*/
    opacity: 0;
    transition: all 0.4s ease;
}

.hero-video-play:hover:after {
    opacity: 1;
    animation: pulse-border 1.5s ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* 视频错误消息 */
.video-error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 20;
}

.game-thumbnails-slider::-webkit-scrollbar {
    display: none;
}

.thumbnail-item.active {
    opacity: 1;
    border-color: #3498db;
    box-shadow: 0 0 0 2px #fff;
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* 导航按钮样式 */
.thumbnail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
    font-size: 14px;
}

.thumbnail-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.7);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .game-video-player {
        padding-bottom: 75%;
        /* 4:3 宽高比，更适合移动设备 */
    }

    .custom-play-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .thumbnail-item {
        width: 80px;
        height: 45px;
    }
}

/* 设计系统变量 */
:root {
    --game-primary-color: #2271b1;
    --game-secondary-color: #135e96;
    --game-text-color: #333;
    --game-light-text: #fff;
    --game-bg-color: #f8f9fa;
    --game-card-bg: #fff;
    --game-border-radius-sm: 4px;
    --game-border-radius-md: 8px;
    --game-border-radius-lg: 12px;
    --game-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --game-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --game-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --game-spacing-xs: 5px;
    --game-spacing-sm: 10px;
    --game-spacing-md: 20px;
    --game-spacing-lg: 30px;
    --game-transition: all 0.3s ease;
}

/* 文章头部信息样式优化 */
.article-header1 {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.game-info {
    position: relative;
    z-index: 2;
}

.game-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);*/
    z-index: -1;
    border-radius: 20px;
    pointer-events: none;
}



/* 游戏海报样式 */
.game-poster-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}



.game-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}


/* 游戏元数据信息样式 */
.game-meta-info {
    margin-top: 20px;
    padding: 20px;
    background: rgb(25 25 29);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.meta-item {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.meta-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}



.meta-valua {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

/* 游戏类型标签样式 */
.genre-itam {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.genre-itam:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.genre-itam svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.breath-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    animation: breath 1.5s infinite alternate;
    margin-right: 4px;
}

@keyframes breath {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* 游戏描述部分 */
.article-description1 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.article-description1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}



.article-content1 p {
    margin-bottom: 16px;
}

.article-content1 h2,
.article-content1 h3 {
    color: #fff;
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}


.requirement-item svg {
    color: rgba(255, 255, 255, 0.7);
}



/* 响应式调整 */
@media (max-width: 992px) {
    .article-description2 {
        grid-template-columns: 1fr;
    }

    .requirements-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-header1 {
        padding: 16px;
    }

    .game-meta-info {
        padding: 15px;
    }

    .article-description1,
    .game-requirements,
    .game-requirements1 {
        padding: 16px;
    }
}

/* 媒体布局 - 使用Grid替代Flex */
.game-media-wrap {
    position: relative;
    display: grid;
    /*grid-template-columns: minmax(200px, 300px) 1fr;*/
    /*gap: var(--game-spacing-md);*/
    z-index: 1;
}

.game-poster-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--game-spacing-md);
}


.game-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--game-spacing-md);
    line-height: 1.3;
}

.game-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--game-spacing-sm) var(--game-spacing-md);
}

.game-meta p {
    margin: var(--game-spacing-xs) 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.game-meta strong {
    display: inline-block;
    min-width: 80px;
    font-weight: 600;
    opacity: 0.9;
}

/* 媒体容器样式 */
.game-media-container {
    width: 100%;

    height: 100%;
    position: relative;

    overflow: hidden;
    transition: 0.3s;
}

.game-video.hidden {
    display: none;
}

/* 视频导航样式 - 移至右下角 */
.video-navigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 30px;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    margin: 0 5px;
}

.video-nav:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.video-counter {
    color: white;
    font-size: 14px;
    margin: 0 10px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 媒体播放器样式 */
.game-media-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 宽高比 */
    background-color: #000;
    background: rgba(255, 255, 255, 0.01);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-image: initial;
    border-radius: 24px;
    /* padding: 24px; */
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 10px rgb(0 0 0 / 66%);
}

.game-video-player,
.game-screenshot-viewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
    z-index: 1;
}

.game-video-player.active,
.game-screenshot-viewer.active {
    opacity: 1;
    display: block !important;
    z-index: 2;
}

.screenshot-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.screenshot-slide.active {
    opacity: 1;
    display: block !important;
}

/* 缩略图轮播样式 */
.game-thumbnails-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: var(--game-spacing-sm);
    padding: var(--game-spacing-xs);
    -webkit-overflow-scrolling: touch;
}


.thumbnail-item.video-thumb::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}


.requirements-content {
    font-size: 14px;
    line-height: 1.6;
}


.requirements-content ul {
    list-style: none;
    padding-left: 0;
}

.requirements-content li strong {
    color: #666;
    margin-right: 5px;
}




/* 视频播放器容器 */
.game-video-player {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}





.custom-play-btn:hover i {
    transform: scale(1.1);
}

/* 缩略图容器 */
.thumbnails-container {
    position: relative;
    padding: 15px 50px;
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 21;
    background: rgba(189, 181, 181, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 10px rgb(0 0 0 / 66%);
    margin-bottom: 20px;
}

.thumbnail-item {
    flex: 0 0 100px;
    min-width: 100px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    margin-right: 5px;
}

.thumbnail-item:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.thumbnail-nav.prev {
    left: 10px;
}

.thumbnail-nav.next {
    right: 10px;
}

.thumbnail-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.5);
}

/* 播放图标样式 */
.thumbnail-item.video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* 视频和截图显示控制 */
.game-video-player,
.game-screenshot-viewer {
    display: none;
}

.screenshot-slide.active {
    display: block;
}

.screenshot-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 自定义视频控制 */
.custom-video-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 220px;
    background: linear-gradient(180deg, rgba(4, 1, 21, 0) 0%, rgba(4, 1, 21, .7) 34.48%, #000000 82.36%);
    transition: opacity 0.3s ease;
    z-index: 20;
    pointer-events: auto;
    /*backdrop-filter: blur(10px);*/
}

/* 自定义视频控制 */
.article-description2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-content {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

.game-video-player:hover .custom-video-controls {
    opacity: 1;
}

/* 视频播放时隐藏播放按钮 */
.game-video-player.playing .custom-video-controls {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.game-video-player.playing:hover .custom-video-controls {
    opacity: 0.8;
    pointer-events: auto;
}

/* 游戏描述样式 */
.game-description,
.game-description-short,
.game-description-full,
.game-description-about,
.game-media-section,
.game-videos,
.screenshots-grid {
    display: none;
}

/* 游戏媒体区域样式 */
.game-media-section {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9比例 */
    margin-bottom: 20px;
}

/* 视频播放器样式 */
.game-videos {
    margin-bottom: 30px;
}

.game-video-player {
    display: none;
    margin-bottom: 20px;
}

.game-video-player.active {
    display: block;
}

/* 截图网格布局 */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.screenshot-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--game-primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--game-transition);
}

.download-button:hover {
    background: var(--game-secondary-color);
    transform: translateY(-2px);
}

/* 响应式布局 */
@media (max-width: 992px) {
    .game-meta {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .game-media-wrap {
        grid-template-columns: 1fr;
    }

    .article-description1 {
        grid-template-columns: 1fr;
    }

    .game-meta {
        grid-template-columns: 1fr;
    }

    .download-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .game-title {
        font-size: 22px;
    }

    .thumbnail-item {
        min-width: 70px;
    }
}



.config-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 如果需要确保标题及描述文本与图标在同一行显示，可调整如下 */
.requirements-title,
.config-value {
    display: inline-block;
}

.requirements-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #6ca2d8;
    font-weight: bold;
    flex-direction: row;
    flex-wrap: wrap;
}



.config-item .requirements-title,
.config-item .config-value {
    display: flex;
    align-items: center;
    gap: 7px;
}



.genre-itam {
    display: inline-flex;
    align-items: center;
    padding: 3px 17px;
    border-radius: 20px;
    font-size: 14px;
    gap: 8px;
    margin: 2px 4px 2px 0;
    transition: transform 0.2sease;
    color: #333;
}

.genre-itam:hover {
    transform: translateY(-1px);
}



.breath-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #0E0E13;
    box-shadow: 0 0 8px #000;
    animation: breath 1s infinite alternate;
}



@keyframes breath {
    0% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0 0 4px transparent
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 16px #000
    }
}

/* 调整缩略图滑块位置 */
.game-thumbnails-container {
    position: relative;
    margin-top: 10px;
    padding: 0 40px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .game-content-layout {
        grid-template-columns: 1fr;
    }

    .article-header1 {
        margin-top: 20px;
    }
}

/* 视频项目样式 */
.video-item {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 视频元素样式 */
.game-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

/* 点击动画效果 */
.hero-video-play.clicked {
    transform: scale(0.95);
    transition: all 0.2s ease;
}

.hero-video-play.clicked .custom-play-btn {
    transform: scale(0.95);
    transition: all 0.2s ease;
}

/* 游戏标题样式 - 更加突出的设计 */
.game-header-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fffefe;
    padding: 12px 20px;

    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
    display: block;
    width: 100%;
    --bg: linear-gradient(90deg, #A29CD3 0%, #E8BFAC 100%);
    position: relative;
    background: var(--bg);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 5;
}

.video-title {
    color: white;
    background-image: linear-gradient(45deg, #6441a4, #a970ff);
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 13px;
    font-weight: 500;
    z-index: 20;
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 8px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    border-radius: 13px;
    text-overflow: ellipsis;
}

/* 确保视频标题在控件显示时仍然可见 */
.game-video-player:hover .video-title {
    opacity: 1;
}

/* 游戏页面布局基础结构 - 优化版 */
.game-layout {
    display: grid;
    grid-template-columns: 1fr 5fr;
    /* 左侧占1份，右侧占5份 */
    grid-template-areas: "sidebar content";
    gap: 20px;
    padding: 20px;
}

/* 游戏侧边栏固定效果样式 */
.game-sidebar {
    grid-area: sidebar;
    border-radius: 12px;
    z-index: 10;
    /* 提高层级，确保在其他元素上方 */
    width: 100%;
    /* 确保宽度正确 */
}

/* 当JS添加fixed类时应用的样式 */
.game-sidebar.fixed {
    position: fixed;
    top: 20px;
    /* 宽度由JS动态计算 */
}

/* 响应式调整 - 合并重复的媒体查询 */
@media (max-width: 992px) {
    .game-layout {
        grid-template-columns: 1fr;
        /* 在较小屏幕上变为单列布局 */
        grid-template-areas:
            "sidebar"
            "content";
    }

    .game-sidebar.fixed {
        position: static;
    }

    .game-content-layout {
        grid-template-columns: 1fr;
    }
}

/* 修复截图查看器样式 */
.game-screenshot-viewer.active {
    display: block !important;
    opacity: 1 !important;
    z-index: 2 !important;
}

/* 确保截图在激活时可见 */
.screenshot-slide.active {
    display: block !important;
    opacity: 1 !important;
}

/* 相关游戏部分样式 */
.related-games-section {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.section-header {
    margin-bottom: 20px;
}

.section-title i {
    margin-right: 8px;
    color: #6ca2d8;
}

.related-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.no-related {
    color: #666;
    text-align: center;
    padding: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .related-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}


/* 配置内容区域共同样式 */
.rec-config .requirements-content,
.min-config .requirements-content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-direction: column;
}

/* 配置项共同样式 */
.rec-config .requirement-item,
.min-config .requirement-item {
    flex: 1 1 calc(50% - 12px);
    background-color: #19191d;
    border-radius: 8px;
    padding: 7px 11px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
}

/* 配置项图标共同样式 */
.rec-config .requirement-item svg,
.min-config .requirement-item svg {
    flex-shrink: 0;
    fill: #fff;
}

.rec-config .requirement-item svg,
.min-config .requirement-item svg{
    width: 21px;
    height: 21px;
}


/* 配置值文本共同样式 */
.rec-config .requirement-item .config-value,
.min-config .requirement-item .config-value {
    color: #b3b3c1;
    margin: 0;
    padding-left: 36px;
    color: #b3b3c1;
    line-height: 1.6;
}

/* 配置区块标题样式 */
.rec-config h3,
.min-config h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}