/* 神话庄园游戏官网 - 全新暗黑奇幻风格 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 暗黑奇幻配色方案 */
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-crimson: #dc143c;
    --accent-purple: #8a2be2;
    --text-primary: #f5f5f5;
    --text-secondary: #b8b8b8;
    --text-muted: #888888;
    --border-glow: #d4af37;
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --shadow-glow: rgba(212, 175, 55, 0.3);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1810 100%);
    --gradient-gold: linear-gradient(45deg, #d4af37, #f4d03f);
    --gradient-crimson: linear-gradient(45deg, #dc143c, #ff6b6b);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-dark);
    overflow-x: hidden;
    position: relative;
}

/* 动态背景效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container-wrap3m {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 现代化导航栏 */
.header-nav7k {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-nav7k.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px var(--shadow-dark);
}

.header-nav7k .container-wrap3m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section8p {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon5z {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px var(--shadow-glow);
    transition: var(--transition-bounce);
}

.logo-icon5z:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px var(--shadow-glow);
}

.logo-section8p h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.nav-desktop4r {
    display: flex;
    gap: 30px;
}

.nav-link2w {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.nav-link2w::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-link2w:hover::before {
    left: 0;
}

.nav-link2w:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* 移动端导航 */
.mobile-menu-btn6t {
    display: none;
    background: var(--gradient-gold);
    border: none;
    color: var(--primary-dark);
    font-size: 1.5rem;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.mobile-menu-btn6t:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--shadow-glow);
}

.mobile-nav-overlay9j {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.mobile-nav-content1s {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: var(--gradient-dark);
    padding: 30px;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    border-left: 2px solid var(--accent-gold);
}

.mobile-nav-overlay9j.active .mobile-nav-content1s {
    transform: translateX(0);
}

.close-btn8m {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 2rem;
    float: right;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-bounce);
}

.close-btn8m:hover {
    transform: rotate(90deg) scale(1.2);
}

.mobile-nav-links4k {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link7p {
    color: var(--text-primary);
    text-decoration: none;
    padding: 20px;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    text-align: center;
}

.mobile-nav-link7p:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    transform: translateX(10px);
}

/* 主内容区域 */
.main-content2x {
    padding-top: 80px;
}

/* 英雄区域 - 全新设计 */
.hero-section5n {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
        url('../images/cover-hero-bg9k.webp?v=20241225') center/cover;
    overflow: hidden;
}

.hero-section5n::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 70% 30%, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content8z {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* 现代卡片式游戏信息 */
.game-info-card6r {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 15px 40px var(--shadow-dark),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.game-info-card6r::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: cardRotate 10s linear infinite;
    z-index: -1;
}

@keyframes cardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-header4m {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    margin-bottom: 25px;
    align-items: center;
}

.game-icon-large9k {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    border: 2px solid var(--accent-gold);
    box-shadow: 
        0 0 25px var(--shadow-glow),
        0 8px 20px var(--shadow-dark);
    transition: var(--transition-bounce);
}

.game-icon-large9k:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 
        0 0 60px var(--shadow-glow),
        0 15px 40px var(--shadow-dark);
}

.game-title-info3s {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 头部游戏预览图 */
.header-game-preview {
    position: relative;
}

.preview-image {
    width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    box-shadow: 
        0 0 25px var(--shadow-glow),
        0 8px 20px var(--shadow-dark);
    transition: var(--transition-bounce);
}

.preview-image:hover {
    transform: scale(1.05) rotateY(-5deg);
    box-shadow: 
        0 0 35px var(--shadow-glow),
        0 12px 30px var(--shadow-dark);
}

.game-title7p {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 5px;
}

.game-subtitle2w {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
}

/* 现代标签设计 */
.game-tags5z {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.tag-item8m {
    background: var(--gradient-crimson);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid rgba(220, 20, 60, 0.5);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.tag-item8m:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
}

/* 现代下载按钮 */
.download-section4k {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.download-btn-primary7x {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-bounce);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid var(--accent-gold);
    width: fit-content;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

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

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

.download-btn-primary7x:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.download-info3r {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.version-info5m,
.size-info2p {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.game-description6t {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* 内容区域 */
.content-section8p {
    padding: 100px 0;
    position: relative;
}

.content-section8p:nth-child(even) {
    background: rgba(26, 26, 26, 0.3);
}

.section-title4r {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title4r::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-title4r i {
    margin-right: 20px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--shadow-glow);
}

/* 游戏介绍图片区域 */
.intro-image-section {
    margin: 40px 0 60px 0;
    text-align: center;
    position: relative;
}

.intro-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px var(--shadow-dark),
        0 0 0 3px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.intro-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 35px 100px var(--shadow-dark),
        0 0 0 3px var(--accent-gold),
        0 0 50px var(--shadow-glow);
}

.intro-image-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
    opacity: 0.7;
}

.intro-image-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
    opacity: 0.7;
}

/* 现代网格布局 */
.content-grid7k {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.text-content5m {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.text-content5m h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.text-content5m h3 i {
    margin-right: 15px;
}

.text-content5m p {
    margin-bottom: 25px;
}

.image-content2w {
    position: sticky;
    top: 120px;
}

.content-image6z {
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px var(--shadow-dark),
        0 0 0 2px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.content-image6z:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 80px var(--shadow-dark),
        0 0 0 2px var(--accent-gold);
}

/* 特色功能 - 现代卡片网格 */
.features-grid9x {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card7m {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px var(--shadow-dark);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card7m::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-smooth);
}

.feature-card7m:hover::before {
    left: 100%;
}

.feature-card7m:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px var(--shadow-dark),
        0 0 0 2px var(--accent-gold);
    border-color: var(--accent-gold);
}

.feature-icon5p {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition-bounce);
}

.feature-card7m:hover .feature-icon5p {
    transform: scale(1.1) rotateY(180deg);
}

.feature-card7m h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    font-weight: 600;
}

.feature-card7m p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 截图网格 - 现代瀑布流 */
.screenshots-grid4k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.screenshot-item7p {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    position: relative;
}

.screenshot-item7p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(220, 20, 60, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.screenshot-item7p:hover::before {
    opacity: 1;
}

.screenshot-item7p:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 70px var(--shadow-dark),
        0 0 0 2px var(--accent-gold);
}

.screenshot-img5z {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.screenshot-item7p:hover .screenshot-img5z {
    transform: scale(1.1);
}

/* 攻略和资讯 - 现代卡片 */
.guides-grid6x,
.news-grid5k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.guide-card8k,
.news-card9x {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px var(--shadow-dark);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.guide-card8k::before,
.news-card9x::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.guide-card8k:hover::before,
.news-card9x:hover::before {
    transform: scaleX(1);
}

.guide-card8k:hover,
.news-card9x:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px var(--shadow-dark),
        0 0 0 2px var(--accent-gold);
    border-color: var(--accent-gold);
}

.guide-link4p,
.news-link7p {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: block;
    margin-bottom: 15px;
}

.guide-link4p:hover,
.news-link7p:hover {
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--shadow-glow);
}

.guide-card8k p,
.news-card9x p {
    color: var(--text-secondary);
    margin: 20px 0;
    line-height: 1.6;
}

.guide-meta3r,
.news-meta4r {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

.guide-date7m,
.news-date8m {
    color: var(--text-muted);
}

.guide-views2s,
.news-category3s {
    background: var(--gradient-crimson);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 页脚 - 现代设计 */
.footer-section6k {
    background: var(--secondary-dark);
    padding: 50px 0 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.footer-section6k::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content8p {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-info4r h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-info4r p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 1rem;
}

.footer-links7m h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.friend-links5z {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.friend-links5z a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    position: relative;
    font-size: 0.9rem;
}

.friend-links5z a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.friend-links5z a:hover::before {
    width: 100%;
}

.friend-links5z a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-bottom2x {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-desktop4r {
        display: none;
    }
    
    .mobile-menu-btn6t {
        display: block;
    }
    
    .logo-section8p h1 {
        font-size: 1.5rem;
    }
    
    .logo-icon5z {
        width: 40px;
        height: 40px;
    }
    
    .game-header4m {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .header-game-preview {
        order: -1;
        margin-bottom: 20px;
    }
    
    .preview-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 2/1;
    }
    
    .game-icon-large9k {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .game-title7p {
        font-size: 2.2rem;
    }
    
    .content-grid7k {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image-section {
        margin: 30px 0 40px 0;
    }
    
    .intro-hero-image {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .image-content2w {
        position: static;
    }
    
    .features-grid9x {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid4k {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .guides-grid6x,
    .news-grid5k {
        grid-template-columns: 1fr;
    }
    
    .footer-content8p {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 15px;
    }
    
    .footer-links7m h4 {
        margin-bottom: 12px;
        font-size: 1rem;
    }
    
    .friend-links5z {
        gap: 6px;
    }
    
    .friend-links5z a {
        padding: 5px 0;
        font-size: 0.85rem;
    }
    
    .download-info3r {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title4r {
        font-size: 2.2rem;
    }
    
    .container-wrap3m {
        padding: 0 15px;
    }
    
    .game-info-card6r {
        padding: 20px;
        margin: 15px;
    }
    
    .content-section8p {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .game-title7p {
        font-size: 2rem;
    }
    
    .section-title4r {
        font-size: 1.8rem;
    }
    
    .screenshots-grid4k {
        grid-template-columns: 1fr;
    }
    
    .game-tags5z {
        justify-content: center;
    }
    
    .download-btn-primary7x {
        padding: 10px 25px;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .mobile-nav-content1s {
        width: 100%;
    }
}

/* 文章页面样式 */
.guide-article5k {
    padding: 40px 0;
}

.article-header7p {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.article-title9x {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta4r {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.article-date6m,
.article-category2s {
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.article-content8z {
    line-height: 1.8;
    color: var(--text-secondary);
}

.guide-section3k {
    margin-bottom: 50px;
}

.guide-section3k h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.guide-section3k h3 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin: 25px 0 15px 0;
}

.guide-section3k h4 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin: 20px 0 10px 0;
}

.guide-section3k p {
    margin-bottom: 15px;
}

.guide-section3k ul,
.guide-section3k ol {
    margin: 15px 0;
    padding-left: 25px;
}

.guide-section3k li {
    margin-bottom: 8px;
}

.article-footer5m {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.article-tags7k {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label3r {
    color: var(--text-secondary);
    font-weight: 600;
}

.article-tag8p {
    background: var(--gradient-crimson);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(220, 20, 60, 0.5);
}

.article-navigation6x {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-btn4z {
    background: rgba(26, 26, 26, 0.8);
    color: var(--text-primary);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn4z:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 特殊效果类 */
.glow-effect {
    box-shadow: 0 0 30px var(--shadow-glow);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
} 