/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e94c76;    /* 更鲜艳的珊瑚红 */
    --secondary-color: #fcb75d;  /* 温暖的金橙色 */
    --accent-color: #ff6f3c;     /* 更明亮的橙色 */
    --dark-color: #f8fafd;       /* 微调背景色 */
    --light-color: #ffffff;      /* 纯白色 */
    --text-color: #2d3748;       /* 更深的蓝灰色文本 */
    --text-secondary: #526179;   /* 调整次要文本色 */
    --bg-gradient: linear-gradient(135deg, #f8fafd 0%, #eef2f7 100%); /* 柔和渐变 */
    --bg-light: #f9fafc;         /* 浅色背景 */
    --card-bg: rgba(255, 255, 255, 1); /* 卡片背景 */
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --border-color: rgba(0, 0, 0, 0.05);
    --success-color: #4acea3;    /* 成功色：薄荷绿 */
    --warning-color: #fcb75d;    /* 警告色：金橙色 */
    --error-color: #e94c76;      /* 错误色：珊瑚红 */
    --primary-color-rgb: 233, 76, 118;
    --secondary-color-rgb: 252, 183, 93;
    --accent-color-rgb: 255, 111, 60;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    --gradient-text: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    --gradient-border: linear-gradient(to right, var(--primary-color), var(--accent-color));
    --gradient-hover: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    --gradient-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.9), var(--bg-light));
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.page-container {
    overflow: hidden;
    position: relative;
}

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

.section-title {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 2.2rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.section-title i {
    margin-right: 15px;
    color: var(--primary-color);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* 导航栏重构样式 */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 80px;
}

.main-nav.scrolled {
    height: 65px;
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    position: relative;
    white-space: nowrap;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    position: relative;
}

.logo-text a, .footer-logo-text a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.logo-text a:hover, .footer-logo-text a:hover {
    transform: translateY(-2px);
    background: var(--gradient-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.logo-symbol {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 5px 12px;
    background: rgba(var(--primary-color-rgb), 0.08);
    border-radius: 30px;
    margin-left: 5px;
    letter-spacing: 0;
}

.nav-links-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
    margin: 0;
    height: 100%;
}

.nav-link-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0 5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover:after {
    transform: scaleX(1);
}

.download-nav-btn {
    margin-left: 30px;
}

.download-nav-btn a {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-nav-btn a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.download-nav-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.35);
}

.download-nav-btn a:hover:before {
    opacity: 1;
}

.download-nav-btn i {
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 移动菜单按钮活动状态 */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 页面在菜单打开状态下禁止滚动 */
body.menu-open {
    overflow: hidden;
}

/* 禁止滚动时的页面行为 */
body.no-scroll {
    overflow: hidden;
}

/* 头部横幅区域重构样式 */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: url('https://phoenixes.one/images/hero-bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-color-rgb), 0.5), rgba(var(--accent-color-rgb), 0.4));
    opacity: 0.8;
    z-index: 1;
    backdrop-filter: blur(3px);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
    padding: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border-left: 3px solid rgba(var(--primary-color-rgb), 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-title {
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title-main {
    font-size: 3.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero-title-sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    line-height: 1.5;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(var(--primary-color-rgb), 0.8);
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
}

.badge-text {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-actions {
    margin-top: 30px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.4);
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-primary i {
    font-size: 1.2rem;
}

/* 创建动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 媒体查询 */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        height: auto;
    }

    .nav-link-item {
        width: 100%;
        height: auto;
    }

    .nav-links a {
        width: 100%;
        height: auto;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a:after {
        display: none;
    }

    .download-nav-btn {
        margin: 30px 0 0;
        width: 100%;
    }

    .download-nav-btn a {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        padding: 160px 0 100px;
    }

    .hero-content {
        max-width: 500px;
        padding: 30px;
    }

    .hero-title-main {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
    }

    .hero-content {
        max-width: 100%;
        padding: 25px;
    }

    .hero-title-main {
        font-size: 2.4rem;
    }

    .hero-title-sub {
        font-size: 1rem;
    }

    .badge {
        padding: 8px 16px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .hero-badges {
        gap: 10px;
    }

    .badge {
        padding: 6px 14px;
    }

    .badge-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-symbol {
        font-size: 0.85rem;
        padding: 4px 10px;
    }
}

/* 最新动态区样式 - 网格布局 */
.news-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafd 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 5px;
}

.news-date {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-tag {
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.news-card-body {
    padding: 5px 20px 15px;
    flex-grow: 1;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: flex-end;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: var(--accent-color);
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(5px);
}

.news-all-button {
    text-align: center;
    margin-top: 30px;
}

.view-all-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.view-all-news:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.3);
}

.view-all-news i {
    transition: transform 0.3s ease;
}

.view-all-news:hover i {
    transform: translateX(3px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-section {
        padding: 50px 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-card-header, .news-card-body, .news-card-footer {
        padding: 12px 15px;
    }
    
    .news-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .news-excerpt {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

/* 玩家评价区 */
.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafd 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-value {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 1;
}

.rating-stars {
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--secondary-color);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.reviews-container {
    position: relative;
}

.reviews-slider {
    overflow: hidden;
    padding: 10px 5px;
    margin: 0 -5px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    min-width: 300px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.12);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.review-user-info {
    display: flex;
    flex-direction: column;
}

.reviewer {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.reviewer-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.review-quote {
    font-size: 3.5rem;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-top: -15px;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.star {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
    flex: 1;
}

.review-badge {
    align-self: flex-start;
    background: rgba(var(--success-color), 0.1);
    color: var(--success-color);
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-badge i {
    font-size: 0.85rem;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.reviews-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--text-color);
}

.reviews-nav-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(var(--primary-color-rgb), 0.2);
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(var(--text-color-rgb), 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.reviews-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .reviews-track {
        scroll-snap-type: x mandatory;
        overflow-x: scroll;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
    }
    
    .reviews-track::-webkit-scrollbar {
        height: 6px;
    }
    
    .reviews-track::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 3px;
    }
    
    .reviews-track::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
    
    .review-card {
        scroll-snap-align: start;
        min-width: 80%;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        min-width: 85%;
        padding: 20px;
    }
    
    .rating-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .reviews-rating {
        width: 100%;
        justify-content: center;
    }
    
    .review-card {
        min-width: 95%;
        padding: 18px;
    }
    
    .review-top {
        margin-bottom: 12px;
    }
    
    .review-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .rating-value {
        font-size: 1.6rem;
    }
    
    .stars {
        font-size: 0.9rem;
    }
    
    .reviewer {
        font-size: 0.9rem;
    }
    
    .reviewer-title {
        font-size: 0.8rem;
    }
    
    .review-quote {
        font-size: 3rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* 游戏画面区样式优化 */
.gallery-section {
    padding: 40px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/gallery-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.gallery-tab {
    background: transparent;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.gallery-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.gallery-tab:hover, .gallery-tab.active {
    color: var(--light-color);
}

.gallery-tab:hover::before, .gallery-tab.active::before {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--light-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.gallery-fullview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-fullview.active {
    display: flex;
}

.close-fullview {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--light-color);
    cursor: pointer;
    z-index: 2001;
}

.fullview-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fullview-info {
    text-align: center;
    color: var(--light-color);
    margin-top: 20px;
    max-width: 600px;
}

.fullview-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fullview-desc {
    font-size: 1rem;
    opacity: 0.8;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-color);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-more {
    text-align: center;
    margin-top: 25px;
}

.more-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--gradient-secondary);
    color: var(--light-color);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(var(--accent-color-rgb), 0.2);
}

.more-gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--accent-color-rgb), 0.3);
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .gallery-tab {
        margin-bottom: 0;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-more {
        margin-top: 20px;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .more-gallery-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0) 100%);
        padding: 15px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .gallery-tab {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin: 0 3px;
    }
    
    .gallery-tabs {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .fullview-image {
        max-width: 95%;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 35px;
        height: 35px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .more-gallery-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .gallery-section {
        padding: 30px 0;
    }
    
    .gallery-tabs {
        margin-bottom: 15px;
    }
    
    .gallery-tab {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin: 0 2px;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 30px;
        height: 30px;
    }
}

/* 角色区 */
.characters-section {
    padding: 60px 0;
    background-color: var(--dark-color);
}

.characters-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.character-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
    opacity: 1 !important;
    transform: none !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.character-card:hover {
    transform: translateY(-10px) !important;
}

.character-image {
    overflow: hidden;
    height: 250px;
}

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

.character-card:hover .character-image img {
    transform: scale(1.1);
}

.character-info {
    padding: 20px;
}

.character-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.character-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-style: italic;
}

.character-info p {
    color: var(--text-color);
    line-height: 1.7;
}

/* 下载区 */
.download-section {
    padding: 80px 0 30px;
    position: relative;
    background: var(--light-color);
    overflow: hidden;
}

.download-wrapper {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.1);
    margin-top: 30px;
    border: 1px solid var(--border-color);
    position: relative;
}

.download-image {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
}

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

.download-wrapper:hover .download-image img {
    transform: scale(1.05);
}

.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index: 1;
}

.download-platforms {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.download-platforms i {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--text-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.download-version {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.download-content {
    flex: 1;
    padding: 25px;
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-title span {
    color: var(--primary-color);
    margin-left: 5px;
}

.download-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.download-features span {
    font-size: 0.85rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.download-features span i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

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

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.4);
}

.sponsor-code {
    background: rgba(var(--primary-color-rgb), 0.1);
    border: 1px dashed rgba(var(--primary-color-rgb), 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
}

.sponsor-code-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.sponsor-code-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.download-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.download-info span i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .download-wrapper {
        flex-direction: column;
    }
    
    .download-image {
        height: 180px;
        flex: none;
    }
    
    .download-content {
        padding: 20px;
    }
    
    .download-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .download-features span {
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .download-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .download-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .download-features span {
        font-size: 0.75rem;
    }
}

/* 特性区域样式优化 */
.features-section {
    padding: 40px 0;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--secondary-color-rgb), 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.12);
    border-color: rgba(var(--primary-color-rgb), 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-card .feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

/* 在媒体查询中保留响应式设计 */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .features-section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .primary-btn .feature-icon,
    .secondary-btn .feature-icon,
    .download-nav-btn .feature-icon {
        font-size: 1rem;
    }
    
    .download-button .feature-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-section {
        padding: 30px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .section-title .feature-icon {
        font-size: 1.5rem;
    }
    
    .download-button .feature-icon {
        font-size: 1.1rem;
    }
}

/* 页脚样式 - 重构版 */
.main-footer {
    background: linear-gradient(135deg, #f8faff 0%, #eef7ff 100%);
    padding: 50px 0 20px;
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03);
    border-top: 4px solid;
    border-image: var(--gradient-primary) 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-about .footer-logo {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-text {
    font-size: 2rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-logo-symbol {
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-top: 5px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-menu a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-menu a:hover:before {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(var(--primary-color-rgb), 0.2);
}

.footer-friends-title {
    margin-top: 20px;
}

.friend-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.friend-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s;
    border-radius: 20px;
    padding: 5px 15px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.friend-link:hover {
    color: var(--light-color);
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-policy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-policy a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-policy a:hover {
    color: var(--primary-color);
}

.divider {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-menu li {
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* 返回顶部按钮 */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.25);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.35);
}

/* 图标全局样式 */
.feature-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* 不同上下文中的图标大小调整 */
.section-title .feature-icon {
    font-size: 1.7rem;
    margin-right: 15px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.article-header .feature-icon,
.article-meta .feature-icon {
    font-size: 1rem;
    margin-right: 6px;
}

.download-features .feature-icon {
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 5px;
}

.read-more .feature-icon {
    font-size: 0.9rem;
    margin-left: 3px;
    transition: transform 0.3s;
}

.read-more:hover .feature-icon {
    transform: translateX(5px);
}

.back-to-home .feature-icon {
    font-size: 1.1rem;
    margin-right: 5px;
    transition: transform 0.3s;
}

.back-to-home:hover .feature-icon {
    transform: translateX(-5px);
}

.download-button .feature-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
    transform-origin: center;
    animation: pulse 2s infinite;
    background: transparent;
    -webkit-text-fill-color: white;
    text-fill-color: white;
}

.primary-btn .feature-icon,
.secondary-btn .feature-icon,
.download-nav-btn .feature-icon {
    font-size: 1.1rem;
    margin-right: 5px;
    background: transparent;
    -webkit-text-fill-color: white;
    text-fill-color: white;
}

.back-to-top-btn .feature-icon {
    font-size: 1.4rem;
    background: transparent;
    -webkit-text-fill-color: white;
    text-fill-color: white;
}

/* 保持特性卡片中的图标样式不变 */
.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.hero-actions .btn-primary .feature-icon {
    color: white;
    background: transparent;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: white;
    background-clip: initial;
    text-fill-color: white;
}

.download-nav-btn .feature-icon {
    font-size: 1.1rem;
    margin-right: 5px;
    background: transparent;
    -webkit-text-fill-color: white;
    text-fill-color: white;
}

.download-button .feature-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
    transform-origin: center;
    animation: pulse 2s infinite;
    background: transparent;
    -webkit-text-fill-color: white;
    text-fill-color: white;
}

.primary-btn .feature-icon,
.secondary-btn .feature-icon {
    font-size: 1.1rem;
    margin-right: 5px;
    background: transparent;
    -webkit-text-fill-color: white;
    text-fill-color: white;
}

/* 简化版游戏画面区样式 */
.simple-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.simple-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    aspect-ratio: 16/9;
}

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

.simple-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.simple-gallery-item:hover img {
    transform: scale(1.05);
}

.simple-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 80%, rgba(0,0,0,0) 100%);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.simple-gallery-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.simple-gallery-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .simple-gallery {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .simple-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .simple-gallery-caption h4 {
        font-size: 1.1rem;
    }
    
    .simple-gallery-caption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .simple-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .simple-gallery-item {
        max-width: 100%;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .simple-gallery-caption {
        padding: 10px;
    }
    
    .simple-gallery-caption h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .simple-gallery-caption p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@media (max-width: 400px) {
    .gallery-section {
        padding: 30px 0;
    }
    
    .simple-gallery-caption h4 {
        font-size: 1rem;
    }
    
    .simple-gallery-caption p {
        font-size: 0.75rem;
    }
}

/* 按钮脉动动画 */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse-animation 2s infinite ease-in-out;
}

.logo-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* 响应式调整确保移动端logo不换行 */
@media (max-width: 768px) {
    .logo-inline {
        gap: 8px; /* 减小间距 */
    }
    
    .footer-logo-text {
        font-size: 1.6rem; /* 移动端字体略小 */
    }
    
    .logo-symbol {
        font-size: 0.85rem; /* 移动端字体略小 */
        padding: 4px 10px;
    }
} 