* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #321d21;
    color: #fff;
    line-height: 1.6;
}

/* 导航栏 */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(39, 24, 27, 0.95);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(133, 48, 69, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 10px 0;
    background: rgba(39, 24, 27, 0.98);
}

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

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #ecb1d4;
    text-shadow: 0 0 10px rgba(236, 177, 212, 0.5),
                 0 0 20px rgba(236, 177, 212, 0.3),
                 0 0 30px rgba(236, 177, 212, 0.2);
    margin: 0;
    transition: all 0.3s ease;
}

.main-nav.scrolled .logo {
    font-size: 1.8em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ecb1d4;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ecb1d4;
}

.nav-link:hover::after {
    width: 100%;
}

.download-nav {
    background: rgba(133, 48, 69, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.download-nav:hover {
    background: #853045;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.download-nav::after {
    display: none;
}

.menu-toggle {
    font-size: 1.8em;
    cursor: pointer;
    color: #ecb1d4;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(133, 48, 69, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 177, 212, 0.3);
    box-shadow: 0 0 10px rgba(133, 48, 69, 0.2);
}

.menu-toggle:hover {
    background: rgba(133, 48, 69, 0.5);
    box-shadow: 0 0 15px rgba(133, 48, 69, 0.4);
}

.menu-toggle.active {
    background: rgba(133, 48, 69, 0.7);
    color: #fff;
    box-shadow: 0 0 15px rgba(133, 48, 69, 0.6);
}

.menu-toggle i {
    display: block;
}

/* 通用标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5em;
    color: #ecb1d4;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #853045, transparent);
    box-shadow: 0 0 10px rgba(133, 48, 69, 0.5);
}

.section-subtitle {
    color: #eeb35b;
    font-size: 1.1em;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: 0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-header.dark h2 {
    color: #fff;
}

.section-header.dark .section-subtitle {
    color: #ecb1d4;
}

/* 通用链接按钮 */
.action-link {
    display: inline-block;
    color: #ecb1d4;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 30px;
    background: rgba(133, 48, 69, 0.2);
    border: 1px solid rgba(133, 48, 69, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.action-link:hover {
    background: rgba(133, 48, 69, 0.3);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.action-link:hover i {
    transform: translateX(5px);
}

.header {
    background: #27181b;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #853045;
    box-shadow: 0 0 20px rgba(133, 48, 69, 0.3);
}

/* 英雄区域 */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(39, 24, 27, 0.8), rgba(50, 29, 33, 0.8)),
                url('../img/bg.webp') center/cover;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-text-container {
    width: 50%;
    z-index: 5;
}

.hero h2 {
    font-size: 4em;
    margin-bottom: 10px;
    color: #ecb1d4;
    text-shadow: 0 0 10px rgba(236, 177, 212, 0.5),
                 0 0 20px rgba(236, 177, 212, 0.3);
}

.tagline {
    font-size: 1.5em;
    color: #eeb35b;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1em;
    color: #ffffff;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.hero-image {
    width: 45%;
    height: 80%;
    position: relative;
    z-index: 5;
}

.main-character {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(133, 48, 69, 0.5);
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px 20px rgba(133, 48, 69, 0.3);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #853045;
    box-shadow: 0 0 10px rgba(133, 48, 69, 0.5);
    animation: float 15s infinite ease-in-out;
    opacity: 0.15;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle at 30% 30%, #eeb35b, #853045);
    animation-delay: 0s;
}

.particle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 75%;
    background: radial-gradient(circle at 30% 30%, #ecb1d4, #853045);
    animation-delay: -5s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle at 30% 30%, #ecb1d4, #5d2531);
    animation-delay: -10s;
}

.download-container {
    margin-top: 40px;
    width: 100%;
}

.download-btn {
    background: linear-gradient(135deg, #853045 0%, #5d2531 70%, #853045 100%);
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.3em;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 25px rgba(133, 48, 69, 0.3), 0 0 15px rgba(133, 48, 69, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 25px rgba(133, 48, 69, 0.3), 0 0 15px rgba(133, 48, 69, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(133, 48, 69, 0.5), 0 0 25px rgba(133, 48, 69, 0.7);
    }
    100% {
        box-shadow: 0 5px 25px rgba(133, 48, 69, 0.3), 0 0 15px rgba(133, 48, 69, 0.5);
    }
}

.download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        #853045 0%, 
        #5d2531 25%, 
        #853045 50%, 
        #5d2531 75%, 
        #853045 100%);
    z-index: -1;
    transition: all 0.7s ease;
}

.download-btn:hover::after {
    transform: translateX(-50%);
}

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

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(133, 48, 69, 0.4), 0 0 25px rgba(133, 48, 69, 0.6);
    animation: none;
}

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

.download-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(3px);
}

.main-text {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.version-text {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.6em;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(133, 48, 69, 0.3);
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    top: -2px;
    transition: all 0.3s ease;
}

.download-btn:hover .version-text {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(236, 177, 212, 0.5);
    transform: scale(1.05);
}

.version-details {
    margin-top: 15px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    font-weight: 300;
}

.version-details span {
    margin: 0 5px;
}

.version-details i {
    margin-right: 5px;
    color: #eeb35b;
}

.divider {
    color: #853045;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(10px) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(-10px);
    }
}

/* 关于游戏部分 */
.about-section {
    padding: 100px 50px;
    background: #27181b;
    position: relative;
}

.about-grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
}

.about-text {
    flex: 1;
    padding: 30px;
    background: rgba(50, 29, 33, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(133, 48, 69, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #f0f0f0;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #eeb35b;
}

.feature-list strong {
    color: #ecb1d4;
    display: block;
    margin-bottom: 5px;
}

.about-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-card {
    background: rgba(50, 29, 33, 0.4);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(133, 48, 69, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(133, 48, 69, 0.3);
    border-color: rgba(133, 48, 69, 0.5);
}

.about-card i {
    font-size: 2.5em;
    color: #eeb35b;
    margin-bottom: 15px;
}

.about-card h3 {
    color: #ecb1d4;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    line-height: 1.5;
}

.features {
    padding: 30px 20px;
    position: relative;
    background: rgba(39, 24, 27, 0.6);
}

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

.feature-card {
    background: rgba(133, 48, 69, 0.05);
    border: 1px solid rgba(133, 48, 69, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card i {
    font-size: 2em;
    color: #eeb35b;
    margin-bottom: 10px;
}

.feature-card h3 {
    color: #ecb1d4;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    line-height: 1.4;
}

.media-gallery {
    padding: 80px 20px;
    position: relative;
    background: #27181b;
}

.media-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(133, 48, 69, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 177, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.media-gallery h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ecb1d4;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.media-gallery h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #853045, transparent);
    box-shadow: 0 0 10px rgba(133, 48, 69, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 300px;
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(133, 48, 69, 0.3);
    border-color: rgba(133, 48, 69, 0.3);
}

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

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

.gallery-item .caption {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    color: #fff;
    text-align: center;
    z-index: 2;
    transform: translateY(5px);
    transition: transform 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.gallery-caption {
    color: #fff;
    font-size: 0.9em;
    max-width: 80%;
    line-height: 1.4;
}

.gallery-expand {
    background: rgba(133, 48, 69, 0.8);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-expand:hover {
    background: #853045;
    transform: scale(1.1);
}

.news {
    padding: 80px 20px;
    position: relative;
    background: #321d21;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(133, 48, 69, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 177, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.news h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ecb1d4;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.news h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #853045, transparent);
    box-shadow: 0 0 10px rgba(133, 48, 69, 0.5);
}

.news-article {
    background: rgba(39, 24, 27, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(133, 48, 69, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.news-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #5d2531, #853045);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-article:hover::before {
    opacity: 1;
}

.article-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.tag {
    background: rgba(133, 48, 69, 0.2);
    color: #ecb1d4;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(133, 48, 69, 0.3);
}

.news-article time {
    color: #888;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.news-article time i {
    margin-right: 5px;
    color: #eeb35b;
}

.news-article h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3em;
    line-height: 1.4;
}

.news-article p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-article .read-more {
    color: #eeb35b;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.news-article .read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #eeb35b;
    transition: width 0.3s ease;
}

.news-article .read-more:hover {
    color: #eeb35b;
}

.news-article .read-more:hover::after {
    width: 100%;
}

.news-article .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.reviews {
    padding: 80px 20px;
    position: relative;
    background: #27181b;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(133, 48, 69, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 177, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ecb1d4;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #853045, transparent);
    box-shadow: 0 0 10px rgba(133, 48, 69, 0.5);
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(50, 29, 33, 0.8);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(133, 48, 69, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(133, 48, 69, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #853045, #ecb1d4);
    margin-right: 15px;
    border: 2px solid rgba(236, 177, 212, 0.3);
}

.reviewer-name {
    color: #ecb1d4;
    font-weight: 500;
    margin-bottom: 5px;
}

.rating {
    color: #eeb35b;
    font-size: 1.1em;
}

.review-text {
    color: #f0f0f0;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    color: #853045;
    font-size: 1.8em;
    line-height: 1;
}

.version-history {
    padding: 80px 20px;
    position: relative;
    background: #27181b;
}

.version-history h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ecb1d4;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.version-history h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #853045, transparent);
    box-shadow: 0 0 10px rgba(133, 48, 69, 0.5);
}

.version-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 0.8fr;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto 15px;
    padding: 0 15px;
    color: #ecb1d4;
    font-weight: 500;
    font-size: 0.9em;
}

.version-header div {
    display: flex;
    align-items: center;
}

.version-header i {
    margin-right: 5px;
    color: #eeb35b;
}

.version-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 0.8fr;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto 15px;
    background: rgba(39, 24, 27, 0.8);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(133, 48, 69, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.version-card:hover {
    transform: translateY(-3px) translateX(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(133, 48, 69, 0.3);
}

.version-card .version-tag {
    background: rgba(133, 48, 69, 0.2);
    color: #ecb1d4;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 500;
    border: 1px solid rgba(133, 48, 69, 0.3);
}

.version-card .download-btn.small {
    background: rgba(133, 48, 69, 0.8);
    color: #fff;
    font-size: 0.85em;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(133, 48, 69, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.version-card .download-btn.small:hover {
    background: #853045;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 页脚部分 */
footer {
    background: #27181b;
    position: relative;
}

.footer-top {
    padding: 80px 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    border-bottom: 1px solid rgba(133, 48, 69, 0.3);
}

.footer-logo {
    padding-right: 50px;
}

.footer-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #ecb1d4;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ddd;
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: #ecb1d4;
    margin-bottom: 25px;
    font-size: 1.2em;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #853045;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #853045;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ecb1d4;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    background: #eeb35b;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(133, 48, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecb1d4;
    font-size: 1.3em;
    transition: all 0.3s ease;
    border: 1px solid rgba(133, 48, 69, 0.3);
}

.social-links a:hover {
    background: rgba(133, 48, 69, 0.5);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter {
    margin-top: 30px;
}

.newsletter h3 {
    color: #ecb1d4;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.newsletter-form {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(133, 48, 69, 0.3);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(50, 29, 33, 0.5);
    border: none;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: rgba(133, 48, 69, 0.8);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #853045;
}

.footer-bottom {
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9em;
}

.footer-legal {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-legal li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.footer-legal li a:hover {
    color: #ecb1d4;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(133, 48, 69, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.back-to-top:hover {
    background: #853045;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* 响应式样式 */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 30px;
    }
    
    .hero h2 {
        font-size: 3.5em;
    }
    
    .hero-text-container, .hero-image {
        width: 48%;
    }
    
    .nav-container, .about-grid, .gallery-grid, .news-container, 
    .reviews-container, .version-container, .footer-top, .footer-bottom {
        padding: 0 30px;
    }
    
    .about-section, .gallery-section, 
    .news-section, .reviews-section, .download-section {
        padding: 80px 20px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(39, 24, 27, 0.95);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        z-index: 100;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 2px solid rgba(133, 48, 69, 0.5);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        margin: 10px 0;
        padding: 12px 15px;
        width: 100%;
        text-align: center;
        border-radius: 5px;
        font-size: 1.1em;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(133, 48, 69, 0.3);
    }
    
    .menu-toggle {
        display: flex;
        animation: pulse 2s infinite;
    }
    
    .download-nav {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        padding: 12px;
        background: rgba(133, 48, 69, 0.8);
    }
    
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 100px 20px 50px;
    }
    
    .hero-text-container, .hero-image {
        width: 100%;
        max-width: 600px;
    }
    
    .hero-image {
        height: 400px;
        margin-top: 50px;
    }
    
    .about-grid {
        flex-direction: column;
    }
    
    .gallery-grid, .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .news-featured, .news-secondary {
        grid-column: 1;
    }
    
    .version-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-filter {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        margin-bottom: 10px;
    }
    
    /* 评价区域横向滚动 */
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    .hero h2 {
        font-size: 3em;
    }
    
    .gallery-grid, .reviews-container, .version-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .req-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.6em;
    }
    
    .about-section, .gallery-section, .reviews-section {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1.2em;
    }
    
    .version-text {
        font-size: 0.7em;
    }
    
    .version-details {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-nav {
        padding: 12px 0;
    }
    
    .main-nav.scrolled {
        padding: 8px 0;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-header {
        flex-direction: row;
        align-items: center;
    }
    
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    }
    
    .gallery-caption {
        max-width: 100%;
        font-size: 0.85em;
    }
    
    .gallery-expand {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }
    
    /* 移动端评价区域横向滚动 */
    .reviews-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding: 10px 0 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* 防止滚动传播到整个页面 */
        overscroll-behavior-x: contain;
        /* 添加边距确保最后一个卡片能完全显示 */
        padding-right: 20px;
        margin-right: -20px;
        /* 确保容器不超出父容器 */
        width: 100%;
        max-width: 100%;
    }
    
    .reviews-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
        max-width: 350px;
        margin-right: 15px;
        padding: 25px;
        /* 添加滚动动画效果 */
        transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* 添加当前焦点卡片效果 */
    .review-card.focused {
        transform: scale(1.03);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        border-color: rgba(133, 48, 69, 0.6);
    }
    
    .review-card:last-child {
        margin-right: 0;
    }
    
    .reviews-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 80px 15px 40px;
    }
    
    .hero h2 {
        font-size: 2.5em;
    }
    
    .tagline {
        font-size: 1.2em;
    }
    
    .hero-description {
        font-size: 1em;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .section-subtitle {
        font-size: 1em;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .about-card {
        padding: 20px 15px;
    }
    
    .gallery-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9em;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .footer-column h3 {
        margin-bottom: 15px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 1.1em;
        gap: 10px;
    }
    
    .main-text {
        font-size: 0.9em;
    }
    
    .version-text {
        font-size: 0.6em;
        padding: 2px 8px;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .main-nav.scrolled {
        padding: 6px 0;
    }
    
    .logo {
        font-size: 1.7em;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-text {
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-caption {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.5em;
    }
    
    .main-nav {
        padding: 8px 0;
    }
    
    .nav-link {
        padding: 10px;
        font-size: 1em;
    }
    
    .hero-content {
        padding: 70px 15px 40px;
    }
    
    .hero h2 {
        font-size: 2.2em;
    }
    
    .tagline {
        font-size: 1.1em;
    }
    
    .section-header h2 {
        font-size: 1.8em;
    }
    
    .section-subtitle {
        font-size: 0.9em;
    }
    
    .download-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .about-section, .gallery-section, 
    .news-section, .reviews-section, .download-section {
        padding: 50px 15px;
    }
    
    .footer-top {
        padding: 50px 15px 25px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .menu-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.4em;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .main-character {
        border-radius: 15px;
    }
    
    .version-details {
        flex-direction: column;
        gap: 5px;
        align-items: center;
        margin-top: 10px;
        font-size: 0.85em;
    }
    
    .version-details span {
        text-align: center;
        margin: 2px 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .download-container {
        margin-top: 30px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .reviewer-name {
        font-size: 0.9em;
    }
    
    .rating {
        font-size: 0.9em;
    }
    
    .review-text {
        font-size: 0.9em;
        padding-left: 15px;
    }
    
    .gallery-overlay {
        padding: 10px;
    }
    
    .gallery-expand {
        width: 28px;
        height: 28px;
        font-size: 0.8em;
    }
}

/* 游戏截图部分 */
.gallery-section {
    padding: 100px 50px;
    background: #27181b;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(133, 48, 69, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 177, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* 新的画廊容器 */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 主要展示区域 */
.gallery-main {
    width: 100%;
    height: 550px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(133, 48, 69, 0.3);
    background-color: #1a1214;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item.active {
    opacity: 1;
    z-index: 2;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 3;
}

.gallery-caption {
    color: #fff;
    font-size: 1.1em;
    max-width: 80%;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-expand {
    background: rgba(133, 48, 69, 0.8);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-expand:hover {
    background: #853045;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* 缩略图导航 */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery-nav-item {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: none;
}

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

.gallery-nav-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-nav-item span {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.8em;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-nav-item.active {
    border-color: #853045;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-nav-item.active::after {
    background-color: rgba(0, 0, 0, 0.2);
}

.gallery-nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.gallery-nav-item:hover::after {
    background-color: rgba(0, 0, 0, 0.3);
}

/* 控制按钮 */
.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgba(133, 48, 69, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2em;
    opacity: 0.7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: rgba(133, 48, 69, 0.9);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* 全屏查看 */
.gallery-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 5, 7, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-fullscreen.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.fullscreen-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.fullscreen-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(133, 48, 69, 0.3);
}

.fullscreen-caption {
    color: #fff;
    font-size: 1.2em;
    margin-top: 20px;
    max-width: 80%;
    text-align: center;
    line-height: 1.6;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: rgba(133, 48, 69, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3em;
    z-index: 10;
}

.fullscreen-close:hover {
    background-color: rgba(133, 48, 69, 0.9);
    transform: rotate(90deg);
}

/* 移动端样式 */
@media (max-width: 992px) {
    .gallery-main {
        height: 400px;
    }
    
    .gallery-caption {
        font-size: 1em;
    }
    
    .gallery-nav-item {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-main {
        height: 350px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .gallery-nav {
        gap: 10px;
    }
    
    .gallery-nav-item {
        width: 80px;
        height: 55px;
    }
    
    .gallery-nav-item span {
        font-size: 0.7em;
    }
    
    .gallery-expand {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-main {
        height: 300px;
    }
    
    .gallery-nav-item {
        width: 60px;
        height: 45px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .gallery-expand {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .gallery-caption {
        font-size: 0.9em;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .fullscreen-close {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    
    .fullscreen-content img {
        max-height: 70vh;
    }
    
    .fullscreen-caption {
        font-size: 1em;
    }
}

/* 游戏标签样式 */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 标题行样式 */
.title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.title-row h2 {
    margin-bottom: 0;
}

.title-row .tagline {
    margin-bottom: 0;
    font-size: 1.2em;
    background: rgba(133, 48, 69, 0.2);
    padding: 3px 15px;
    border-radius: 20px;
    border: 1px solid rgba(133, 48, 69, 0.3);
    white-space: nowrap;
}

@media (max-width: 576px) {
    .title-row {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .title-row h2 {
        font-size: 2em;
    }
    
    .title-row .tagline {
        font-size: 0.9em;
        padding: 2px 10px;
    }
}