/* Temp11 模板 - 简单垂直滚动布局 */
/* 类名前缀: 随机后缀 */

/* CSS变量 */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #4facfe;
    --success-color: #38ef7d;
    --warning-color: #fcb69f;
    
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #edf2f7;
    --bg-dark: #2d3748;
    
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;
    
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    --border-dark: #a0aec0;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --navbar-height: 70px;
}

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* 固定顶部导航栏 */
.top-navbar-p2w9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.top-navbar-p2w9.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-container-p2w9 {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.navbar-brand-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo-p2w9 {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.brand-name-p2w9 {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu-p2w9 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link-p2w9:hover,
.nav-link-p2w9.active {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.nav-link-p2w9.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
}

.nav-link-p2w9 i {
    font-size: 1rem;
}

.nav-link-p2w9 span {
    font-size: 0.875rem;
}

.mobile-menu-btn-p2w9 {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-bar-p2w9 {
    width: 1.5rem;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn-p2w9.active .menu-bar-p2w9:nth-child(1) {
    transform: rotate(45deg) translate(0.3rem, 0.3rem);
}

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

.mobile-menu-btn-p2w9.active .menu-bar-p2w9:nth-child(3) {
    transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

/* 主要内容区域 */
.main-content-p2w9 {
    padding-top: var(--navbar-height);
}

/* 英雄区域 */
.hero-section-p2w9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image-p2w9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-overlay-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.8) 0%, 
        rgba(118, 75, 162, 0.6) 50%, 
        rgba(79, 172, 254, 0.7) 100%);
}

.hero-content-p2w9 {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-container-p2w9 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--text-white);
}

.hero-badge-p2w9 {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title-p2w9 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description-p2w9 {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-actions-p2w9 {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.primary-btn-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--text-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.primary-btn-p2w9:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.secondary-btn-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

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

.scroll-indicator-p2w9 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    opacity: 0.8;
}

.scroll-arrow-p2w9 {
    width: 2rem;
    height: 2rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-text-p2w9 {
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 通用区域样式 */
.section-container-p2w9 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-p2w9 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-p2w9 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-decoration-p2w9 {
    width: 4rem;
    height: 4px;
    background: var(--primary-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* 游戏介绍区域 */
.intro-section-p2w9 {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.intro-content-grid-p2w9 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-text-column-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.description-text-p2w9 {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.features-title-p2w9 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.features-list-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-item-p2w9:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon-p2w9 {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content-p2w9 h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-content-p2w9 p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.game-tags-p2w9 {
    margin-top: 1rem;
}

.tags-title-p2w9 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tags-container-p2w9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-item-p2w9 {
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tag-item-p2w9:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: translateY(-2px);
}

.intro-media-column-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.gallery-title-p2w9 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.screenshots-grid-p2w9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.screenshot-item-p2w9 {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.screenshot-item-p2w9:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.screenshot-img-p2w9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.screenshot-overlay-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.screenshot-overlay-p2w9 i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.screenshot-item-p2w9:hover .screenshot-overlay-p2w9 {
    opacity: 1;
}

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

.stats-title-p2w9 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.stats-grid-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-card-p2w9:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-icon-p2w9 {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-info-p2w9 {
    display: flex;
    flex-direction: column;
}

.stat-number-p2w9 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label-p2w9 {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* 游戏攻略区域 */
.guide-section-p2w9 {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.guide-content-layout-p2w9 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.guide-article-p2w9 {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.guide-content-wrapper-p2w9 {
    padding: 2rem;
    max-height: 600px;
    overflow-y: auto;
    line-height: 1.8;
}

.guide-content-wrapper-p2w9 h1,
.guide-content-wrapper-p2w9 h2,
.guide-content-wrapper-p2w9 h3,
.guide-content-wrapper-p2w9 h4,
.guide-content-wrapper-p2w9 h5,
.guide-content-wrapper-p2w9 h6 {
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-content-wrapper-p2w9 p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.guide-content-wrapper-p2w9 ul,
.guide-content-wrapper-p2w9 ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-content-wrapper-p2w9 li {
    margin-bottom: 0.5rem;
}

.guide-sidebar-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-tips-card-p2w9,
.guide-navigation-card-p2w9 {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.tips-title-p2w9,
.nav-title-p2w9 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tips-list-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.tip-item-p2w9:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.tip-icon-p2w9 {
    width: 2rem;
    height: 2rem;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.tip-content-p2w9 h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.tip-content-p2w9 p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.guide-nav-links-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guide-nav-link-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.guide-nav-link-p2w9:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: translateX(5px);
}

.guide-nav-link-p2w9 i {
    font-size: 1rem;
    width: 1rem;
    text-align: center;
}

/* 立即下载区域 */
.download-section-p2w9 {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.download-background-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
}

.download-overlay-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(79, 172, 254, 0.2) 0%, transparent 50%);
}

.download-content-p2w9 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
}

.download-header-p2w9 {
    margin-bottom: 3rem;
}

.download-icon-p2w9 {
    width: 5rem;
    height: 5rem;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
}

.download-title-p2w9 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download-subtitle-p2w9 {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.download-stats-p2w9 {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.download-stat-p2w9 {
    text-align: center;
}

.stat-number-p2w9 {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label-p2w9 {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.download-actions-p2w9 {
    margin-bottom: 3rem;
}

.mega-download-btn-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: var(--text-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-2xl);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mega-download-btn-p2w9:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.btn-glow-p2w9 {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    transition: left var(--transition-slow);
}

.mega-download-btn-p2w9:hover .btn-glow-p2w9 {
    left: 100%;
}

.btn-content-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.feature-list-p2w9 {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.download-feature-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.download-feature-p2w9 i {
    color: var(--success-color);
    font-size: 1rem;
}

/* 友情链接区域 */
.links-section-p2w9 {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.links-header-p2w9 {
    text-align: center;
    margin-bottom: 2rem;
}

.links-title-p2w9 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.links-grid-p2w9 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.link-item-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-primary);
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.link-item-p2w9:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.link-item-p2w9 i {
    font-size: 0.875rem;
}

/* 页脚 */
.footer-section-p2w9 {
    padding: 2rem 0;
    background: var(--bg-dark);
    color: var(--text-white);
}

.footer-content-p2w9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-p2w9 {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.footer-name-p2w9 {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-text-p2w9 {
    opacity: 0.8;
}

/* 回到顶部按钮 */
.back-to-top-p2w9 {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

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

.back-to-top-p2w9:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* 图片灯箱 */
.lightbox-container-p2w9 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.lightbox-backdrop-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content-p2w9 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image-p2w9 {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.lightbox-close-p2w9 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.lightbox-close-p2w9:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* 滚动条样式 */
.guide-content-wrapper-p2w9::-webkit-scrollbar {
    width: 6px;
}

.guide-content-wrapper-p2w9::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.guide-content-wrapper-p2w9::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 3px;
}

.guide-content-wrapper-p2w9::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .intro-content-grid-p2w9,
    .guide-content-layout-p2w9 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title-p2w9 {
        font-size: 3rem;
    }
    
    .section-title-p2w9 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn-p2w9 {
        display: flex;
    }
    
    .navbar-menu-p2w9 {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-light);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: 0.5rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .navbar-menu-p2w9.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link-p2w9 {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .hero-title-p2w9 {
        font-size: 2.5rem;
    }
    
    .hero-actions-p2w9 {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn-p2w9,
    .secondary-btn-p2w9 {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .screenshots-grid-p2w9 {
        grid-template-columns: 1fr;
    }
    
    .download-stats-p2w9 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-list-p2w9 {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-content-p2w9 {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .navbar-container-p2w9 {
        padding: 0 1rem;
    }
    
    .section-container-p2w9 {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-p2w9 {
        font-size: 2rem;
    }
    
    .section-title-p2w9 {
        font-size: 1.75rem;
    }
    
    .download-title-p2w9 {
        font-size: 2rem;
    }
    
    .mega-download-btn-p2w9 {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .download-icon-p2w9 {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }
}

/* 性能优化 */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 可访问性 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}