/* ==========================================================================
   游戏分类页面样式 - 优化版 - 蓝色主题
   ========================================================================== */

/* 面包屑导航 */
.breadcrumb-section {
    background: #e3f2fd;
    padding: 15px 0;
    border-bottom: 1px solid #bbdefb;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-icon {
    color: #444444;
    font-size: 16px;
}

.breadcrumb-text {
    color: #666;
}

.breadcrumb-link {
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #2b2525;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* 主要内容区域 */
.game-main {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 30px 0;
}

.game-category-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    border-left: 4px solid #444444;
    padding-left: 15px;
}

/* 分类筛选 */
.category-filters {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #bbdefb;
}

.filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-weight: 600;
    color: #333;
    min-width: 60px;
    font-size: 14px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background: #fff;
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #bbdefb;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.filter-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.filter-tag:hover {
    background: #bbdefb;
    border-color: #90caf9;
}

.filter-tag:hover::before {
    left: 100%;
}

.filter-tag.active {
    background: #444444;
    color: white;
    border-color: #444444;
}

/* 游戏列表动画 */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* 游戏列表 */
.games-list {
    margin-bottom: 40px;
}

.game-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.game-row:nth-child(n+1):nth-child(-n+6) {
    animation-delay: calc(0.1s * var(--delay, 1));
}

.game-row:nth-child(1) {
    --delay: 1;
}

.game-row:nth-child(2) {
    --delay: 2;
}

.game-row:nth-child(3) {
    --delay: 3;
}

.game-row:nth-child(4) {
    --delay: 4;
}

.game-row:nth-child(5) {
    --delay: 5;
}

.game-row:nth-child(6) {
    --delay: 6;
}

/* 游戏卡片容器 */
.game-card-container {
    width: 350px;
    height: 260px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.game-card-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #444444;
}

.game-card-container:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(43, 37, 37, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

/* 游戏卡片内容 */
.game-cardd {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.game-image {
    width: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.game-image img {
    margin-left: 10px;
    width: 90px;
    height: 90px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.game-card-container:hover .game-image img {
    transform: scale(1.08);
}

.game-title {
    margin: 10px 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.game-card-container:hover .game-title {
    color: #444444;
}

/* 游戏信息区域 */
.game-infoo {
    width: 150px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.game-card-container:hover .game-infoo {
    transform: translateY(-2px);
}

.game-meta {
    width: 200px;
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.game-version {
    width: 150px;
    text-align: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #444444;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.game-card-container:hover .game-version {
    background: linear-gradient(135deg, #444444 0%, #2b2525 100%);
    color: white;
    transform: scale(1.05);
}

.game-size {
    color: #666;
    font-size: 12px;
    transition: color 0.3s ease;
}

.game-card-container:hover .game-size {
    color: #333;
}

.game-date {
    color: #999;
    font-size: 12px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.game-card-container:hover .game-date {
    color: #666;
}

.game-description {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.game-card-container:hover .game-description {
    color: #555;
}

/* 游戏操作按钮 */
.game-actions {
    margin-top: auto;
}

.game-download-btn {
    background: linear-gradient(135deg, #444444 0%, #2b2525 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.game-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.game-download-btn:hover {
    background: linear-gradient(135deg, #444444 0%, #2b2525 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 37, 37, 0.3);
}

.game-download-btn:hover::before {
    left: 100%;
}

.game-download-btn:active {
    transform: translateY(0);
}

/* 游戏评分 */
.game-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.game-card-container:hover .game-rating {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(43, 37, 37, 0.9);
    color: white;
}

.rating-score {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2px;
    color: #444444;
    transition: color 0.3s ease;
}

.game-card-container:hover .rating-score {
    color: white;
}

.rating-text {
    font-size: 10px;
    color: #666;
    line-height: 1;
    transition: color 0.3s ease;
}

.game-card-container:hover .rating-text {
    color: rgba(255, 255, 255, 0.9);
}

/* 分页导航 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-info {
    color: #666;
    font-size: 14px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-btn {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 36px;
    text-align: center;
}

.page-btn:hover {
    background: #e3f2fd;
    border-color: #90caf9;
    color: #333;
}

.page-btn.active {
    background: #444444;
    border-color: #444444;
    color: white;
}

.page-btn.next {
    padding: 8px 16px;
}

.page-dots {
    color: #999;
    font-size: 14px;
    padding: 0 5px;
}

/* 底部 */
.game-footer {
    background: #e3f2fd;
    border-top: 1px solid #bbdefb;
    padding: 40px 0 20px;
    margin-top: 50px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #444444;
}

.footer-notice {
    text-align: center;
    margin-bottom: 20px;
}

.footer-notice p {
    color: #444444;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 10px 20px;
    display: inline-block;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
}

.footer-copyright p {
    margin: 5px 0;
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    right: 20px;
    opacity: 0.1;
    pointer-events: none;
}

.footer-decoration img {
    width: 200px;
    height: auto;
}

/* 加载动画优化 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* 游戏卡片加载延迟 */
.game-row:nth-child(1) .game-card:nth-child(1) {
    animation-delay: 0.1s;
}

.game-row:nth-child(1) .game-card:nth-child(2) {
    animation-delay: 0.2s;
}

.game-row:nth-child(1) .game-card:nth-child(3) {
    animation-delay: 0.3s;
}

.game-row:nth-child(2) .game-card:nth-child(1) {
    animation-delay: 0.4s;
}

.game-row:nth-child(2) .game-card:nth-child(2) {
    animation-delay: 0.5s;
}

.game-row:nth-child(2) .game-card:nth-child(3) {
    animation-delay: 0.6s;
}

.game-row:nth-child(3) .game-card:nth-child(1) {
    animation-delay: 0.7s;
}

.game-row:nth-child(3) .game-card:nth-child(2) {
    animation-delay: 0.8s;
}

.game-row:nth-child(3) .game-card:nth-child(3) {
    animation-delay: 0.9s;
}

.game-row:nth-child(4) .game-card:nth-child(1) {
    animation-delay: 1.0s;
}

.game-row:nth-child(4) .game-card:nth-child(2) {
    animation-delay: 1.1s;
}

.game-row:nth-child(4) .game-card:nth-child(3) {
    animation-delay: 1.2s;
}

/* 模态框样式 */
.game-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.game-details-modal.show {
    opacity: 1;
    visibility: visible;
}

.game-details-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.game-details-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.game-details-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.game-details-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #2b2525 0%, #444444 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.game-details-modal .modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.game-details-modal .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.game-details-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.game-details-modal .modal-body {
    padding: 25px;
}

.game-detail-preview {
    position: relative;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-detail-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-detail-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.game-detail-rating .rating-score {
    font-size: 20px;
    font-weight: bold;
    color: #444444;
    line-height: 1;
    margin-bottom: 5px;
}

.game-detail-rating .rating-text {
    font-size: 11px;
    color: #666;
    line-height: 1;
}

.game-detail-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
    font-size: 14px;
}

.info-value {
    color: #666;
    font-size: 14px;
}

.info-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.game-details-modal .modal-actions {
    display: flex;
    gap: 12px;
}

.game-details-modal .action-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-details-modal .action-btn.primary {
    background: linear-gradient(135deg, #444444 0%, #2b2525 100%);
    color: white;
}

.game-details-modal .action-btn.secondary {
    background: linear-gradient(135deg, #e4875c 0%, #6f42c1 100%);
    color: white;
}

.game-details-modal .action-btn.tertiary {
    background: linear-gradient(135deg, #fd7e14 0%, #dc3545 100%);
    color: white;
}

.game-details-modal .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 通知系统 */
.game-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    max-width: 350px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.game-notification.success {
    border-left-color: #2195f2;
}

.game-notification.info {
    border-left-color: #dc7a4d;
}

.game-notification.warning {
    border-left-color: #ffc107;
}

.game-notification.error {
    border-left-color: #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
}

.notification-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.notification-message {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

/* 滚动条美化 */
.game-details-modal .modal-content::-webkit-scrollbar {
    width: 6px;
}

.game-details-modal .modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.game-details-modal .modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.game-details-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* ==========================================================================
   资讯中心页面样式
   ========================================================================== */

/* 资讯主要布局 */
.zxl-news-main {
    background: #f8f9fa;
    min-height: 80vh;
    padding: 30px 0;
}

.zxl-news-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zxl-news-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zxl-news-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
    border-left: 4px solid #444444;
    padding-left: 15px;
}

/* 新闻分类标签 */
.zxl-news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.zxl-news-category {
    background: #f8f9fa;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    user-select: none;
}

.zxl-news-category:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.zxl-news-category.zxl-active {
    background: #444444;
    color: white;
    border-color: #2b2525;
    box-shadow: 0 2px 8px rgba(43, 37, 37, 0.3);
}

/* 新闻列表 */
.zxl-news-list {
    margin-bottom: 40px;
}

.zxl-news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: newsSlideIn 0.6s ease forwards;
}

.zxl-news-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.zxl-news-item:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes newsSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zxl-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #444444;
}

.zxl-news-image {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.zxl-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zxl-news-item:hover .zxl-news-image img {
    transform: scale(1.05);
}

.zxl-news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zxl-news-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.zxl-news-item:hover .zxl-news-item-title {
    color: #444444;
}

.zxl-news-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zxl-news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.zxl-news-date {
    color: #999;
    font-size: 12px;
}

.zxl-news-views {
    color: #999;
    font-size: 12px;
}

.zxl-news-views::before {
    content: '👁 ';
    margin-right: 2px;
}

.zxl-news-btn {
    background: linear-gradient(135deg, #444444 0%, #2b2525 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}
.zxl-news-btn:hover {
    background: linear-gradient(135deg, #444444 0%, #2b2525 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(43, 37, 37, 0.3);
}

/* 侧边栏样式 */
.news-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #444444;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #444444;
}

/* 搜索框 */
.search-form {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #444444;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.search-btn {
    background: #444444;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #444444;
    transform: translateY(-1px);
}

/* 热门资讯 */
.hot-news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hot-news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.hot-news-item:last-child {
    border-bottom: none;
}

.hot-news-item:hover {
    background: #f8f9fa;
    padding-left: 5px;
    border-radius: 4px;
}

.hot-rank {
    width: 20px;
    height: 20px;
    background: #444444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.hot-rank:nth-child(1) {
    background: #dc3545;
}

.hot-rank:nth-child(2) {
    background: #2b2525;
}

.hot-rank:nth-child(3) {
    background: #ffc107;
    color: #333;
}

.hot-news-title {
    color: #333;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    flex: 1;
}

.hot-news-title:hover {
    color: #444444;
}

/* 推荐软件 */
.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recommend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid #f1f1f1;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recommend-item img {
    width: 80px;
    height: 80px;
}

.recommend-item:hover {
    border-color: #444444;
    background: #f8f9fa;
    transform: translateX(3px);
}

.recommend-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.recommend-info {
    flex: 1;
}

.recommend-title {
    width: 146px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.recommend-rating {
    color: #444444;
    font-size: 12px;
}

/* 广告位 */
.ad-content {
    text-align: center;
}

.ad-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ad-image:hover {
    transform: scale(1.02);
}

.ad-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* 分页样式重用 */
.news-content .pagination {
    justify-content: center;
    margin-top: 30px;
}
/* 新闻详情模态框样式 */
.news-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.news-detail-modal.show {
    opacity: 1;
    visibility: visible;
}

.news-detail-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.news-detail-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.news-detail-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.news-detail-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #444444 0%, #2b2525 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.news-detail-modal .modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.news-detail-modal .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-detail-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.news-detail-modal .modal-body {
    padding: 25px;
}

.news-detail-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #444444;
}

.detail-category {
    background: #2b2525;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.detail-date {
    color: #666;
    font-size: 14px;
}

.detail-views {
    color: #666;
    font-size: 14px;
}

.detail-views::before {
    content: '👁 ';
    margin-right: 4px;
}

.news-detail-content {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #333;
}

.news-detail-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.news-actions {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.action-btn {
    flex: 1;
    padding: 12px 20px;
    /*border: none;*/
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #e9ecef;
    color: #333;
}

.like-btn:hover {
    background: #444444;
    color: white;
    border-color: #444444;
}

.share-btn:hover {
    background: #e4875c;
    color: white;
    border-color: #e4875c;
}

.comment-btn:hover {
    background: #e4875c;
    color: #333;
    border-color: #e4875c;
}

/* 响应式设计 - 新闻详情模态框 */
@media (max-width: 768px) {
    .news-detail-modal .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .news-detail-modal .modal-body {
        padding: 20px;
    }

    .news-detail-image {
        height: 200px;
    }

    .news-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .news-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   排行榜页面样式 (以top开头的类名)
   ========================================================================== */

/* 主要内容区域 */
.top-main {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 0;
}

.top-content-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

.top-left-content {
    flex: 1;
    min-width: 0;
}

.top-right-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* 排行榜主区域 */
.top-ranking-section {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #2b2525 50%, #444444 100%);
    color: white;
}

.top-section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.top-section-actions {
    display: flex;
    gap: 10px;
}

.top-action-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.top-action-btn.active {
    background: rgba(68, 68, 68, 0.8);
    border-color: rgba(68, 68, 68, 0.9);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(43, 37, 37, 0.3);
}

.top-action-btn.active:hover {
    background: rgba(68, 68, 68, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 37, 37, 0.4);
}

/* 排行榜列表 */
.top-ranking-list {
    padding: 0;
}

.top-ranking-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    gap: 20px;
}

.top-ranking-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.top-ranking-item:last-child {
    border-bottom: none;
}

/* 排名号码 */
.top-rank-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    background: #e9ecef;
    color: #495057;
    flex-shrink: 0;
}

.top-rank-gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #444444;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.top-rank-silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #696969;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.top-rank-bronze {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: #5d4e37;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}

/* 应用图标 */
.top-app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 应用信息 */
.top-app-info {
    flex: 1;
    min-width: 0;
}

.top-app-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.top-app-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.top-app-category {
    color: #e4875c;
    background: #e3f2fd;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.top-app-size {
    color: #666;
}

.top-app-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-stars {
    color: #ffc107;
    font-size: 16px;
}

.top-rating-score {
    color: #666;
    font-size: 12px;
}

.top-update-date {
    color: #999;
    font-size: 12px;
}

/* 下载按钮 */
.top-download-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #444444, #2b2525);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 14px;
}

.top-download-btn:hover {
    background: linear-gradient(135deg, #444444, #2b2525);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
}

/* 右侧边栏 */
.top-sidebar-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg, #444444, #2b2525);
    color: white;
}

.top-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.top-more-link {
    color: white;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-more-link:hover {
    opacity: 1;
}

/* 最新资讯 */
.top-news-list {
    padding: 0;
}

.top-news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.top-news-item:hover {
    background: #f8f9fa;
}

.top-news-item:last-child {
    border-bottom: none;
}

.top-news-link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    flex: 1;
    margin-right: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.top-news-link:hover {
    color: #e4875c;
}

.top-news-date {
    color: #999;
    font-size: 11px;
    flex-shrink: 0;
}

/* 下载排行 */
.top-download-ranking {
    padding: 0;
}

.top-download-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
    gap: 12px;
}

.top-download-item:hover {
    background: #f8f9fa;
}

.top-download-item:last-child {
    border-bottom: none;
}

.top-download-rank {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #444444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.top-download-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.top-download-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-download-info {
    flex: 1;
    min-width: 0;
}

.top-download-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.top-download-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.top-download-category {
    color: #666;
}

.top-download-count {
    color: #444444;
    font-weight: 500;
}

/* ==========================================================================
   游戏合集页面样式 (以compilations开头的类名)
   ========================================================================== */

/* 主要内容区域 */
.compilations-main {
    background: #f8f9fa;
    min-height: 80vh;
    padding: 30px 0;
}

/* 页面标题 */
.compilations-header {
    margin-bottom: 25px;
    text-align: center;
}

.compilations-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0;
    position: relative;
    display: inline-block;
}

.compilations-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #444444, #20c997);
    border-radius: 2px;
}

/* 分类标签 */
.compilations-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.compilations-category-btn {
    background: #fff;
    color: #666;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compilations-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    transition: left 0.5s ease;
}

.compilations-category-btn:hover {
    background: #f8f9fa;
    border-color: #444444;
    color: #444444;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(58, 193, 115, 0.2);
}

.compilations-category-btn:hover::before {
    left: 100%;
}

.compilations-category-btn.active {
    background: linear-gradient(135deg, #444444, #20c997);
    color: white;
    border-color: #444444;
    box-shadow: 0 4px 15px rgba(205, 104, 57, 0.3);
}

.compilations-category-btn.active:hover {
    background: linear-gradient(135deg, #444444, #2b2525);
    transform: translateY(-2px);
}

/* 合集区域 */
.compilations-section {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.compilations-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.compilations-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.compilations-section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
    position: relative;
}

.compilations-section-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background: linear-gradient(135deg, #444444, #20c997);
    border-radius: 3px;
}

.compilations-more-link {
    color: #444444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.compilations-more-link:hover {
    color: #444444;
    transform: translateX(3px);
}

.compilations-more-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.compilations-more-link:hover::after {
    transform: translateX(3px);
}

/* 合集网格 */
.compilations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 25px 30px 30px;
}

/* 合集项目 */
.compilations-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.compilations-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.compilations-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.compilations-item:hover::before {
    opacity: 1;
}

/* 合集图片 */
.compilations-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.compilations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.compilations-item:hover .compilations-image img {
    transform: scale(1.1);
}

/* 合集覆盖层 */
.compilations-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.compilations-count {
    font-size: 12px;
    font-weight: 600;
}

.compilations-item:hover .compilations-overlay {
    background: rgba(43, 37, 37, 0.9);
    transform: scale(1.05);
}

/* 合集标题 */
.compilations-item-title {
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.compilations-item:hover .compilations-item-title {
    color: #444444;
}

/* 加载动画 */
@keyframes compilationsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compilations-section {
    opacity: 0;
    animation: compilationsFadeInUp 0.6s ease forwards;
}

.compilations-section:nth-child(1) {
    animation-delay: 0.1s;
}

.compilations-section:nth-child(2) {
    animation-delay: 0.2s;
}

.compilations-section:nth-child(3) {
    animation-delay: 0.3s;
}

.compilations-section:nth-child(4) {
    animation-delay: 0.4s;
}

/* 合集项目加载动画 */
@keyframes compilationsSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.compilations-item {
    opacity: 0;
    animation: compilationsSlideIn 0.5s ease forwards;
}

.compilations-item:nth-child(1) {
    animation-delay: 0.1s;
}

.compilations-item:nth-child(2) {
    animation-delay: 0.15s;
}

.compilations-item:nth-child(3) {
    animation-delay: 0.2s;
}

.compilations-item:nth-child(4) {
    animation-delay: 0.25s;
}

.compilations-item:nth-child(5) {
    animation-delay: 0.3s;
}

.compilations-item:nth-child(6) {
    animation-delay: 0.35s;
}

.compilations-item:nth-child(7) {
    animation-delay: 0.4s;
}

.compilations-item:nth-child(8) {
    animation-delay: 0.45s;
}

/* 点击涟漪效果 */
@keyframes compilationsRipple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.compilations-item.clicked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.3);
    transform: translate(-50%, -50%);
    animation: compilationsRipple 0.6s ease-out;
    z-index: 3;
}

/* 特殊效果 - 悬停时的光效 */
.compilations-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #444444, #20c997, #444444);
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: compilationsGlow 2s linear infinite;
}

.compilations-item:hover::after {
    opacity: 0.7;
}

@keyframes compilationsGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 分类切换动画 */
.compilations-section.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.compilations-section.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* 滚动条美化 */
.compilations-main::-webkit-scrollbar {
    width: 8px;
}

.compilations-main::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.compilations-main::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #444444, #20c997);
    border-radius: 4px;
}

.compilations-main::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #444444, #2b2525);
}

/* ==========================================================================
   游戏详情页面样式 (以gameDe开头的类名)
   ========================================================================== */

/* 主要内容区域 */
.gameDe-main {
    background: #f8f9fa;
    min-height: 80vh;
    padding: 30px 0;
}

.gameDe-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gameDe-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gameDe-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* 游戏头部信息 */
.gameDe-header {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.gameDe-icon {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gameDe-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameDe-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gameDe-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.gameDe-game-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gameDe-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gameDe-detail-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.gameDe-detail-value {
    color: #333;
    font-size: 14px;
    margin-right: 20px;
}

.gameDe-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gameDe-tag-item {
    background: #e3f2fd;
    color: #444444;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #bbdefb;
    transition: all 0.3s ease;
}

.gameDe-tag-item:hover {
    background: #444444;
    color: white;
    transform: translateY(-1px);
}

.gameDe-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.gameDe-rating-section {
    display: flex;
    align-items: center;
}

.gameDe-rating-card {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.gameDe-rating-card:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.gameDe-score-large {
    font-size: 28px;
    font-weight: bold;
    color: #2b2525;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gameDe-trophy-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gameDe-feedback-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gameDe-feedback-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.gameDe-feedback-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.gameDe-feedback-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.gameDe-feedback-label {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.gameDe-feedback-value {
    color: #444444;
    font-size: 13px;
    font-weight: bold;
}

.gameDe-qr-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.gameDe-qr {
    width: 80px;
    height: 80px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gameDe-qr:hover {
    border-color: #444444;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(43, 37, 37, 0.2);
}

.gameDe-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 下载按钮区域 */
.gameDe-download-section {
    display: flex;
    gap: 15px;
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.gameDe-download-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gameDe-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.gameDe-download-btn:hover::before {
    left: 100%;
}

.gameDe-download-btn.primary {
    background: linear-gradient(135deg, #444444, #2b2525);
    color: white;
}

.gameDe-download-btn.secondary {
    background: linear-gradient(135deg, #e4875c, #36cbe3);
    color: white;
}

.gameDe-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 导航标签 */
.gameDe-nav-tabs {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    overflow-x: auto;
}

.gameDe-tab {
    padding: 15px 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.gameDe-tab:hover {
    color: #444444;
    background: #f8f9fa;
}

.gameDe-tab.active {
    color: #444444;
    border-bottom-color: #444444;
    background: #f8f9fa;
}

/* 标签内容 */
.gameDe-tab-content {
    display: none;
    padding: 25px;
}

.gameDe-tab-content.active {
    display: block;
}

.gameDe-description {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.gameDe-description p {
    text-indent: 2ch;
    margin-bottom: 16px;
    text-align: justify;
    line-height: 2.5;
}

.gameDe-screenshot-large {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.gameDe-screenshot-large img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.gameDe-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gameDe-screenshot-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gameDe-screenshot-item:hover {
    transform: scale(1.05);
}

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

.gameDe-guides h3 {
    color: #333;
    font-size: 18px;
    margin: 0 0 15px 0;
    border-left: 4px solid #444444;
    padding-left: 15px;
}

.gameDe-guides ul {
    margin: 0 0 25px 0;
    padding-left: 20px;
}

.gameDe-guides li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* 游戏信息 */
.gameDe-game-info {
    padding: 25px;
    background: #f8f9fa;
    margin: 25px 0;
    border-radius: 8px;
}

.gameDe-game-info h3 {
    color: #333;
    font-size: 18px;
    margin: 0 0 20px 0;
    border-left: 4px solid #444444;
    padding-left: 15px;
}

.gameDe-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.gameDe-info-item {
    display: flex;
    align-items: center;
}

.gameDe-info-label {
    color: #666;
    font-weight: 500;
    min-width: 100px;
    font-size: 14px;
}

.gameDe-info-value {
    color: #333;
    font-size: 14px;
    word-break: break-all;
}

/* 边栏样式 */
.gameDe-sidebar-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gameDe-sidebar-title {
    background: linear-gradient(135deg, #444444, #2b2525);
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.gameDe-hot-games {
    padding: 15px 20px 20px;
}

.gameDe-hot-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.3s ease;
}

.gameDe-hot-item:last-child {
    border-bottom: none;
}

.gameDe-hot-item:hover {
    background: #f8f9fa;
    border-radius: 6px;
    padding-left: 8px;
}

.gameDe-hot-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.gameDe-hot-info {
    flex: 1;
}

.gameDe-hot-info h4 {
    color: #333;
    font-size: 14px;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.gameDe-hot-info span {
    color: #666;
    font-size: 12px;
}

.gameDe-ranking {
    padding: 15px 20px 20px;
}

.gameDe-rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.3s ease;
}

.gameDe-rank-item:last-child {
    border-bottom: none;
}

.gameDe-rank-item:hover {
    background: #f8f9fa;
    border-radius: 6px;
    padding-left: 8px;
}

.gameDe-rank-number {
    width: 20px;
    height: 20px;
    background: #444444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.gameDe-rank-item img {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    object-fit: cover;
}

.gameDe-rank-name {
    color: #333;
    font-size: 13px;
    flex: 1;
}

.gameDe-topics {
    padding: 15px 20px 20px;
}

.gameDe-topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.3s ease;
    cursor: pointer;
}

.gameDe-topic-item:last-child {
    border-bottom: none;
}

.gameDe-topic-item:hover {
    background: #f8f9fa;
    border-radius: 6px;
    padding-left: 8px;
}

.gameDe-topic-item img {
    width: 96px;
    height: 54px;
    border-radius: 6px;
    object-fit: cover;
}

.gameDe-topic-item span {
    color: #333;
    font-size: 14px;
}

/* 评论区域 */
.gameDe-comments-section {
    padding: 25px;
    background: #fff;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.gameDe-comments-title {
    color: #333;
    font-size: 18px;
    margin: 0 0 20px 0;
    border-left: 4px solid #444444;
    padding-left: 15px;
    position: relative;
}

.gameDe-comments-title::before {
    content: '💬';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.gameDe-comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gameDe-comment-input {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
    box-sizing: border-box;
}

.gameDe-comment-input:focus {
    outline: none;
    border-color: #444444;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.gameDe-comment-input::placeholder {
    color: #999;
    font-size: 14px;
}

.gameDe-submit-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, #444444, #2b2525);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gameDe-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.gameDe-submit-btn:hover {
    background: linear-gradient(135deg, #2b2525, #444444);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 37, 37, 0.4);
}

.gameDe-submit-btn:hover::before {
    left: 100%;
}

.gameDe-submit-btn:active {
    transform: translateY(0);
}

/* 图片合集 gallery 专用样式 */
.gallery-title {
    text-align: center;
    margin: 40px 0 20px 0;
}

.gallery-title h1 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 8px;
}

.gallery-title span {
    color: #888;
    font-size: 1.1rem;
}

.gallery {
    margin: auto;
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
    padding: 30px 0 60px 10px;
    background: #f8f8f8;
}

.gallery-item {
    width: 240px;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
