/* 游戏主题通用样式表 */
/* 适用于所有页面 */

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 固定下载栏 */
.fixed-download-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    background-color: #1890ff;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.fixed-download-bar a {
    display: block;
    height: 100%;
    line-height: 55px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}
.fixed-download-bar a:hover {
    background-color: #096dd9;
}

/* 主容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    padding-bottom: 120px; /* 预留底部下载栏空间 */
}

/* 游戏详情卡片 - 核心优化区域 */
.game-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* 手机端卡片优化 */
@media (max-width: 768px) {
    .game-card {
        padding: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .game-card {
        padding: 12px;
        margin-bottom: 12px;
    }
}

/* 游戏头部信息 - 优化布局 */
.game-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}
.game-header-info {
    flex: 1;
    min-width: 280px;
}
.game-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}
.intro-tag {
    background-color: #f0f7ff;
    color: #1890ff;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
}
.intro-tag i {
    margin-left: 6px;
}
.game-cover {
    flex: 0 0 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #f0f7ff;
    box-shadow: 0 3px 12px rgba(24, 144, 255, 0.15);
}
.game-cover img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* 手机端logo图片大小调整 */
@media (max-width: 768px) {
    .game-cover {
        flex: 0 0 100px;
        height: 100px;
        border-width: 3px;
    }
    .game-header {
        gap: 15px;
    }
    .game-header-info {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .game-cover {
        flex: 0 0 80px;
        height: 80px;
        border-width: 2px;
    }
    .game-header {
        gap: 12px;
    }
    .game-header-info {
        min-width: 160px;
    }
    .game-title {
        font-size: 24px;
    }
}

/* 游戏核心信息区 */
.game-core-info {
    margin: 25px 0;
}
.basic-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* 手机端基础信息优化 */
@media (max-width: 768px) {
    .game-core-info {
        margin: 15px 0;
    }
    .basic-info {
        gap: 10px 16px;
        margin-bottom: 15px;
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .game-core-info {
        margin: 12px 0;
    }
    .basic-info {
        gap: 8px 12px;
        margin-bottom: 12px;
        padding: 10px;
        font-size: 12px;
    }
}
.basic-info span {
    color: #333;
    font-weight: 500;
    margin-right: 4px;
}
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}
.tag-item {
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
    transition: all 0.2s;
}
.tag-item:hover {
    background-color: #e8f4ff;
    color: #1890ff;
}

/* 下载按钮组 - 优化样式 */
.download-group {
    display: flex;
    gap: 16px;
    margin: 30px 0 10px;
    flex-wrap: wrap;
}
.download-btn {
    flex: 1;
    min-width: 150px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* 手机端下载按钮优化 */
@media (max-width: 768px) {
    .download-group {
        gap: 12px;
        margin: 20px 0 8px;
    }
    .download-btn {
        min-width: 120px;
        height: 48px;
        line-height: 48px;
        font-size: 16px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .download-group {
        gap: 10px;
        margin: 15px 0 6px;
    }
    .download-btn {
        min-width: 100px;
        height: 44px;
        line-height: 44px;
        font-size: 15px;
        gap: 4px;
    }
    .download-icon {
        font-size: 16px;
    }
}
.download-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.download-btn:hover::after {
    left: 100%;
}
.android-btn {
    background-color: #36d399;
    color: #fff;
    box-shadow: 0 4px 12px rgba(54, 211, 153, 0.2);
}
.android-btn:hover {
    background-color: #28c78e;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(54, 211, 153, 0.3);
}
.ios-btn {
    background-color: #007aff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}
.ios-btn:hover {
    background-color: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.3);
}
.download-icon {
    font-size: 18px;
}

/* 归档标题 */
.archive-header {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.archive-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.archive-description {
    color: #666;
    line-height: 1.8;
}

/* 归档内容 */
.archive-content {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

/* 分类内容 */
.category-content {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

/* 返回全部分类按钮 */
.back-to-archive {
    margin-top: 16px;
}
.back-to-archive a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}
.back-to-archive a:hover {
    background-color: #e8f4ff;
    color: #1890ff;
}

/* 分类列表 */
.category-list {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* 标签云 */
.tag-cloud {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-cloud-item {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 15px;
    transition: all 0.3s;
}
.tag-cloud-item:hover {
    background-color: #e8f4ff;
    color: #1890ff;
}
.category-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}
.category-list ul {
    margin-top: 16px;
}
.category-item {
    margin-bottom: 8px;
}
.category-item a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #666;
    transition: all 0.3s;
}
.category-item a:hover,
.category-item.active a {
    background-color: #e8f4ff;
    color: #1890ff;
}
.category-item .count {
    float: right;
    color: #999;
}

/* 文章列表 */
.post-list {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.post-list-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}
.posts-list {
    margin-top: 16px;
}
.post-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}
.post-item:last-child {
    border-bottom: none;
}
.post-header {
    margin-bottom: 12px;
}
.post-title {
    font-size: 18px;
    margin-bottom: 8px;
}
.post-title a {
    color: #333;
    transition: color 0.3s;
}
.post-title a:hover {
    color: #1890ff;
}
.post-meta {
    display: flex;
    color: #999;
    font-size: 12px;
}
.post-meta span {
    margin-right: 16px;
}
.post-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}
.post-more {
    margin-top: 8px;
}
.post-more a {
    display: inline-block;
    color: #1890ff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.post-more a:hover {
    color: #096dd9;
}

/* 游戏文章资讯板块 */
.news-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.news-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.news-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-card:hover .news-img img {
    transform: scale(1.08);
}
.news-content {
    padding: 16px;
}
.news-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.news-title a {
    color: #333;
    transition: color 0.3s;
}
.news-title a:hover {
    color: #1890ff;
}
.news-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}
.read-more {
    display: inline-block;
    color: #1890ff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.read-more:hover {
    color: #096dd9;
}

/* 分页样式 */
.pagination {
    margin-top: 30px;
    text-align: center;
}
.pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: #fff;
    color: #666;
    font-size: 14px;
    transition: all 0.3s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: #1890ff;
    color: #fff;
}
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    width: auto;
    padding: 0 12px;
}

/* 游戏排行 */
.ranking-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}
.section-title {
    font-size: 18px;
    color: #1890ff;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ranking-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ranking-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.ranking-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.ranking-img {
    height: 140px;
    overflow: hidden;
}
.ranking-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.ranking-item:hover .ranking-img img {
    transform: scale(1.08);
}
.ranking-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ranking-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ranking-info h3 a {
    color: #333;
    transition: color 0.3s;
}
.ranking-info h3 a:hover {
    color: #1890ff;
}
.ranking-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.ranking-download {
    margin-top: 12px;
}
.ranking-download a {
    display: block;
    text-align: center;
    padding: 8px 0;
    background-color: #1890ff;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.ranking-download a:hover {
    background-color: #096dd9;
}

/* 文章页面样式 */
.article-container {
    margin-bottom: 24px;
}

.article-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.article-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.article-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.article-meta-top {
    margin-bottom: 8px;
}

.article-category {
    display: inline-block;
    background-color: #e8f4ff;
    color: #1890ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.article-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #999;
    font-size: 14px;
    margin-bottom: 24px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-body {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 24px;
    color: #222;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.article-body h3 {
    font-size: 20px;
    color: #222;
    margin: 24px 0 12px;
}

.article-body h4 {
    font-size: 18px;
    color: #222;
    margin: 20px 0 10px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-body ul {
    list-style-type: disc;
}

.article-body ol {
    list-style-type: decimal;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: #1890ff;
    text-decoration: underline;
    transition: color 0.3s;
}

.article-body a:hover {
    color: #096dd9;
}

.article-body blockquote {
    border-left: 4px solid #1890ff;
    padding: 12px 16px;
    margin: 20px 0;
    background-color: #f0f7ff;
    border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
    margin-bottom: 0;
    color: #666;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.article-tags {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.article-tags-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #666;
}

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

.article-tag {
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
    transition: all 0.2s;
}

.article-tag:hover {
    background-color: #e8f4ff;
    color: #1890ff;
}

/* 相关文章 */
.related-articles {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.related-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.related-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.related-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-item:hover .related-image img {
    transform: scale(1.08);
}

.related-content {
    padding: 16px;
}

.related-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.related-content h4 a {
    color: #333;
    transition: color 0.3s;
}

.related-content h4 a:hover {
    color: #1890ff;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

/* 标签切换区域样式 */
.tab-container {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    overflow: hidden;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 24px;
    position: relative;
}

.tab-nav-item {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.tab-nav-item:hover {
    color: #1890ff;
}

.tab-nav-item.active {
    color: #1890ff;
    font-weight: 600;
}

.tab-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1890ff;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 福利礼包样式 */
.code-title {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}

.code-list {
    list-style: none;
    margin-bottom: 24px;
}

.code-list li {
    padding: 12px 16px;
    background-color: #f0f7ff;
    border-radius: 8px;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.code-link {
    display: block;
    text-align: center;
    color: #1890ff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.code-link:hover {
    color: #096dd9;
}

.code-qrcode {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 加入群聊样式 */
.group-title {
    font-size: 20px;
    color: #222;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.group-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.group-qrcode {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.group-notice {
    color: #666;
    text-align: center;
    font-size: 14px;
    background-color: #f0f7ff;
    padding: 12px 16px;
    border-radius: 8px;
}

/* 图片轮播 */
.image-slider {
    margin-top: 24px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    height: 400px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.slide-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.slide-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-button {
    display: inline-block;
    background-color: #1890ff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.slide-button:hover {
    background-color: #096dd9;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: #fff;
    width: 24px;
    border-radius: 5px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: rgba(0,0,0,0.7);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* 游戏亮点 */
.game-highlights {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

/* 手机端游戏亮点优化 */
@media (max-width: 768px) {
    .game-highlights {
        padding: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .game-highlights {
        padding: 12px;
        margin-bottom: 12px;
    }
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .highlights-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.highlight-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 24px;
    color: #1890ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(24, 144, 255, 0.1);
    border-radius: 50%;
}

.highlight-item span {
    font-size: 16px;
    color: #333;
    flex: 1;
}

/* 福利礼包 */
.game-gift {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.gift-title {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}

.gift-content {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.gift-content p {
    margin-bottom: 16px;
}

.gift-codes {
    margin-top: 20px;
}

.gift-code-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f0f7ff;
    border-radius: 8px;
    margin-bottom: 12px;
}

.gift-code {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #1890ff;
}

.gift-code-copy {
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gift-code-copy:hover {
    background-color: #096dd9;
}

/* 兑换码系统 */
.redeem-system {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.redeem-title {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
}

.redeem-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.redeem-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.redeem-button {
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.redeem-button:hover {
    background-color: #096dd9;
}

.redeem-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.redeem-message.success {
    background-color: #f0fff4;
    color: #52c41a;
    display: block;
}

.redeem-message.error {
    background-color: #fff1f0;
    color: #f5222d;
    display: block;
}

.redeem-instructions {
    color: #666;
    line-height: 1.6;
}

.redeem-instructions h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.redeem-instructions ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.redeem-instructions li {
    margin-bottom: 8px;
}

/* 页脚样式 */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid #1890ff;
    display: inline-block;
}

.friend-links, .site-map {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.friend-link, .map-link {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 14px;
}

.friend-link:hover, .map-link:hover {
    background-color: #1890ff;
    color: #fff;
}

.copyright-info p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.beian-link {
    color: #666;
    text-decoration: none;
}

.beian-link:hover {
    color: #1890ff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .game-header {
        gap: 20px;
    }
    .game-title {
        font-size: 28px;
    }
    .game-cover {
        flex: 0 0 140px;
        height: 140px;
    }
    .basic-info {
        gap: 12px 16px;
    }
    .download-group {
        gap: 12px;
    }
    .download-btn {
        height: 48px;
        line-height: 48px;
        font-size: 16px;
    }
    .news-list {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    .ranking-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    .archive-title {
        font-size: 22px;
    }
    .archive-content {
        flex-direction: column;
    }
    .category-list {
        flex: 1;
    }
    .slider-container {
        height: 250px;
    }
    .slide-title {
        font-size: 20px;
    }
    .related-posts-list {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-section {
        min-width: 100%;
        padding: 0;
    }
    .friend-links, .site-map {
        justify-content: center;
    }
    .copyright-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .game-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .game-cover {
        width: 100%;
        height: auto;
        flex: none;
    }
    .download-group {
        flex-direction: column;
    }
    .download-btn {
        width: 100%;
    }
    .slider-container {
        height: 200px;
    }
    .slide-content {
        padding: 16px;
    }
    .slide-title {
        font-size: 18px;
    }
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .article-title {
        font-size: 24px;
    }
    .article-content {
        padding: 16px;
    }
    .article-body {
        font-size: 15px;
    }
    .article-body h2 {
        font-size: 20px;
    }
    .article-body h3 {
        font-size: 18px;
    }
}
