/* 游戏详情页专用CSS - 全屏背景图模式 */

/* 游戏详情页主容器 */
.main-content.game-detail{
    min-height: 400px;
}
.main-content .container{
    top:20px
}
.game-detail .main-content {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    margin-bottom: 0;
}

/* 全屏背景图 */
.fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 黑色透明遮罩层 */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* 中央白色卡片 */
.game-detail-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 352px;
    position: relative;
    z-index: 10;
}

.card-content {
    padding: 15px;
    height: 100%;
    overflow-y: auto;
}

/* 左侧布局样式 */

/* 橙色横幅标题 */
.game-title-banner {
    height: 228px;
    border-radius: 12px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* 右侧布局样式 */

/* 游戏标题区域 */
.game-title-section {
    margin-bottom: 12px;
}

.game-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 2;
}

/* 元数据信息 */
.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.5;
    align-items: center;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #666;
    font-size: 0.95rem
}

.meta-item i {
    color: #333;
    font-size: 0.8rem;
}

/* 白色信息区域 */
.info-section {
    padding: 4px 0;
}
.entry-copyright {
	padding: .5rem;
	border-radius: .25rem;
	background-color: rgba(79,158,248,.1);
	font-size: .85rem;
	color: #a1a1a8;
}
/* 信息行 */
.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 10px;
    gap: 15px;
}

.info-box {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #6c757d;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
}

.info-label-area {
    background: #545252;
    color: white;
    padding: 6px 30px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    min-width: 80px;
}

.info-value-area {
    background: white;
    color: #333;
    padding: 6px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex: 1;
}

/* 口号文字 */
.slogan-text {
    background: #f8f9fa;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    margin-top: 10px;
}

.slogan-text p {
    margin: 0;
    color: #333;
    font-size: 0.85rem;
    line-height: 1;
}

/* 移除旧的样式 */
.game-cover-section,
.game-cover-image,
.bottom-info-area,
.slogan-box,
.title-content,
.title-text,
.title-cars,
.car,
.car-left,
.car-right {
    display: none;
}

/* VIP推广横幅 */
.vip-promo-banner {
    background: linear-gradient(135deg, #555, #555);
    /* 其他渐变色选择：
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
    */
    padding: 10px 10px;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

.vip-promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip-promo-text {
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
    margin-right: 12px;
    color: white;
}

.vip-upgrade-link {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    white-space: nowrap;
    font-weight: 500;
}

.vip-upgrade-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.vip-upgrade-link i {
    font-size: 0.75rem;
}

/* 解压密码信息 */
.password-info {
    margin-bottom: 18px;
   
}

.password-text {
    color: #333;
    font-size: 1rem;
}

/* 价格和会员信息 */
.price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    font-size: 1rem;
    font-weight: bold;
    color: #dc3545;
}

.vip-note {
    color: #6c757d;
    font-size: 0.8rem;
}

.btn-collect {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    width: 120px;
    height: 40px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    justify-content: center;
}

.btn-collect:hover {
    background: linear-gradient(45deg, #c82333, #bd2130);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

/* 操作按钮 */
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.btn-buy-now,
.btn-upgrade-vip {
    width: auto;
    height: 45px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    justify-content: center;
    color: white;
}

.btn-buy-now {
    background: #dc3545;
}

.btn-buy-now:hover {
    background: #c82333;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.btn-upgrade-vip {
    background: #dc3545;
}

.btn-upgrade-vip:hover {
    background: #c82333;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

/* 下载按钮样式 */
.btn-download {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    justify-content: center;
    min-width: 120px;
}

.btn-download:hover {
    background: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .card-content {
        padding: 25px;
    }
    
    .game-title {
        font-size: 1.2rem;
    }
    
    .game-meta {
        gap: 12px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-buy-now,
    .btn-upgrade-vip,
    .btn-collect {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .info-label-area,.info-value-area{
        width: 100%;
        justify-content: center;
   
    }
    .game-detail .main-content {
        height: 430px;
        padding: 20px 0;
    }
    
    .fullscreen-bg {
        height: 100%;
    }
    
    .game-detail-card {
        width: 95%;
        height: auto;
        margin-bottom: 30px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .game-title {
        font-size: 1.2rem;
    }
    
    .game-meta {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .meta-item {
        font-size: 0.75rem;
    }
    
    .vip-promo-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .vip-promo-text {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .price-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .game-detail-card {
        width: 98%;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .game-title {
        font-size: 1.2rem;
    }
    
    .game-meta {
        flex-direction: row;
        gap: 6px;
        align-items: flex-start;
    }
    
    .info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .slogan p {
        font-size: 0.75rem;
    }
}

/* 暗色主题支持 */
body.dark-theme .game-detail-card {
    background: #2a2a2a;
    color: #ffffff;
}

body.dark-theme .game-title {
    color: #ffffff;
}

body.dark-theme .meta-item {
    color: #cccccc;
}

body.dark-theme .info-box {
    background: #333;
    border-color: #444;
}

body.dark-theme .info-label {
    color: #ffffff;
}

body.dark-theme .info-value {
    color: #007BFF;
}

body.dark-theme .slogan p {
    color: #ffffff;
}

body.dark-theme .password-text {
    color: #ffffff;
}

body.dark-theme .vip-note {
    color: #cccccc;
} 

/* 内容区域 */
.content-section {
    padding: 10px 0;
    background: #f8f9fa;
    margin-top: 0;
    min-height: 100vh;
    margin: 0px 0;
}

/* 强制移除section间距 */
section + section {
    margin-top: 0;
    padding-top: 0 
}

.game-detail + .content-section {
    margin-top: 0 ;
    padding-top: 0 ;
}
.main-content.content-section{padding: 5px 0;}
/* 左边文字区域 */
.content-area {
    background: #fff;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    min-height: 100vh;
    position: relative;
}
.prev-next-article{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    line-height: 2;
}


.content-area h2 {
    font-size: 0rem;
    font-weight: bold;
    margin-bottom: 0px;
    text-align: left;
}

.content-text {
    font-size: 15px;
    line-height: 2;

}
.content-text img,.content-text video{
    max-width: 100%;
}
/* 右边图片海报 */
.poster-section {
    background: white;
    padding: 1px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.poster-section h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.poster-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.poster-item {

    color: white;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.poster-item img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
/* 游戏列表 */
.game-list-section {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.game-list-section h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-item {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.game-thumbnail {
    width: 150px;
    height:70px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.game-info h4 {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0 0 2px 0;
    color: #555;
}

.game-info p {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
} 

       /* downloadpay标签样式支持 */
       .tlt-jin {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .tlt-chi {
        font-size: 14px;
        color: #666;
        margin: 10px 0;
        text-align: center;
    }
    
    .text-gray {
        color: #999;
    }
    
    .text-center {
        text-align: center;
    }
    
    .margin-small-top {
        margin-top: 8px;
    }
    
    /* 隐藏元素样式 */
    [style*="display: none"] {
        display: none !important;
    }
    
    /* 按钮容器样式 */
    .action-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        align-items: center;
        gap: 15px;
        margin: 20px 0 0;
    }
    
    /* 购买按钮样式 */
    .btn-buy-now {
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 140px;
        height: 48px;
        transition: all 0.3s ease;
        font-weight: bold;
        white-space: nowrap;
    }
    
    .btn-buy-now:hover {
        background: linear-gradient(135deg, #ee5a24, #ff6b6b);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
        color: white;
        text-decoration: none;
    }
    
    /* 升级会员按钮样式 */
    .btn-upgrade-vip {
        background: linear-gradient(135deg, #ffd700, #ffa500);
        color: #333;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        height: 48px;
        transition: all 0.3s ease;
        font-weight: bold;
        white-space: nowrap;
    }
    
    .btn-upgrade-vip:hover {
        background: linear-gradient(135deg, #ffa500, #ffd700);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        color: #333;
        text-decoration: none;
    }
    
    /* 下载按钮样式 */
    .btn-download {
        background: linear-gradient(135deg, #4CAF50, #45a049);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 125px;
        height: 40px;
        transition: all 0.3s ease;
        font-weight: bold;
        white-space: nowrap;
    }
    
    .btn-download:hover {
        background: linear-gradient(135deg, #45a049, #4CAF50);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
        color: white;
        text-decoration: none;
    }
    
    /* 百度云盘特殊样式 */
    .btn-download-baidu {
        background: linear-gradient(135deg, #2d78f4, #1e88e5);
    }
    
    .btn-download-baidu:hover {
        background: linear-gradient(135deg, #1e88e5, #2d78f4);
        box-shadow: 0 5px 15px rgba(45, 120, 244, 0.4);
    }
    
    /* 天翼云盘特殊样式 */
    .btn-download-tianyi {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
    }
    
    .btn-download-tianyi:hover {
        background: linear-gradient(135deg, #f7931e, #ff6b35);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    }
    
    /* 迅雷云盘特殊样式 */
    .btn-download-xunlei {
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    }
    
    .btn-download-xunlei:hover {
        background: linear-gradient(135deg, #ee5a24, #ff6b6b);
        box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
    }
    .meta-info {
        margin: 15px 0;
        padding: 10px 0;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        font-size: 14px;
        color: #666;
        justify-content: center;
    }
    .meta-info span {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #999;
        padding: 5px 12px;
        background: #f8f9fa;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    .meta-info span:hover {
        background: #e9ecef;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .meta-info i {
        color: #007bff;
        font-size: 16px;
    }
    .meta-info .views {
        color: #28a745;
    }
                      
    /* 响应式样式 */
    @media (max-width: 768px) {
        .action-buttons {
            flex-direction: column;
            gap: 10px;
        }
        
        .btn-buy-now,
        .btn-upgrade-vip,
        .btn-download {
            min-width: 200px;
            width: 100%;
            max-width: 300px;
        }
        .poster-section{margin-top: 10px;}
    }
    
    @media (max-width: 480px) {
        .btn-buy-now,
        .btn-upgrade-vip,
        .btn-download {
            min-width: 100%;
            padding: 15px 20px;
            font-size: 14px;
        }
    }

         /* downloadpay标签样式支持 */
         .tlt-jin {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .tlt-chi {
            font-size: 14px;
            color: #666;
            margin: 10px 0;
            text-align: center;
        }
        
        .text-gray {
            color: #999;
        }
        
        .text-center {
            text-align: center;
        }
        
        .margin-small-top {
            margin-top: 8px;
        }
        
        /* 隐藏元素样式 */
        [style*="display: none"] {
            display: none !important;
        }
        
        /* 按钮容器样式 */
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: left;
            align-items: center;
            gap: 10px;
            margin: 20px 0 0;
        }
        
        /* 购买按钮样式 */
        .btn-buy-now {
            background: linear-gradient(135deg, #555, #555);
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 125px;
            height: 45px;
            transition: all 0.3s ease;
            font-weight: bold;
            white-space: nowrap;
        }
        
        .btn-buy-now:hover {
            background: linear-gradient(135deg, #8b00b4, #1900ad);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
            color: white;
            text-decoration: none;
        }
        
        /* 升级会员按钮样式 */
        .btn-upgrade-vip {
            background: linear-gradient(135deg, #555, #555);
            color: #FFF;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 125px;
            height: 45px;
            transition: all 0.3s ease;
            font-weight: bold;
            white-space: nowrap;
        }
        
        .btn-upgrade-vip:hover {
            background: linear-gradient(135deg, #8b00b4, #1900ad);
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(255, 215, 0, 0.4);
            color: #FFF;
            text-decoration: none;
        }
        
        /* 下载按钮样式 */
        .btn-download {
            background: linear-gradient(135deg, #555, #555);
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 125px;
            height: 45px;
            transition: all 0.3s ease;
            font-weight: bold;
            white-space: nowrap;
        }
        
        .btn-download:hover {
            background: linear-gradient(135deg, #8b00b4, #1900ad);
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
            color: white;
            text-decoration: none;
        }
        
        /* 百度云盘特殊样式 */
        .btn-download-baidu {
            background: linear-gradient(135deg, #2d78f4, #1e88e5);
        }
        
        .btn-download-baidu:hover {
            background: linear-gradient(135deg, #1e88e5, #2d78f4);
            box-shadow: 0 5px 15px rgba(45, 120, 244, 0.4);
        }
        
        /* 天翼云盘特殊样式 */
        .btn-download-tianyi {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }
        
        .btn-download-tianyi:hover {
            background: linear-gradient(135deg, #f7931e, #ff6b35);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        
        /* 迅雷云盘特殊样式 */
        .btn-download-xunlei {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        }
        
        .btn-download-xunlei:hover {
            background: linear-gradient(135deg, #ee5a24, #ff6b6b);
            box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
        }
        
        /* 响应式样式 */
        @media (max-width: 768px) {
            .action-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-buy-now,
            .btn-upgrade-vip,
            .btn-download {
                min-width: 200px;
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .btn-buy-now,
            .btn-upgrade-vip,
            .btn-download {
                min-width: 100%;
                padding: 15px 20px;
                font-size: 14px;
            }
        }   