/* Temp3 模板 - 现代化深色主题样式 */

/* 基础重置和变量 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #ec4899;
    --accent-color: #06b6d4;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --shadow-light: rgba(99, 102, 241, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

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

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

/* 顶部导航栏 */
.header-nav-p2w9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-wrapper-p2w9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-section-p2w9 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-p2w9 {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

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

.main-nav-p2w9 {
    display: flex;
    gap: 2rem;
}

.nav-item-p2w9 {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item-p2w9:hover {
    color: var(--text-primary);
    background: var(--bg-card);
    transform: translateY(-2px);
}

.mobile-toggle-p2w9 {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-line-p2w9 {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-p2w9 {
    display: none;
    flex-direction: column;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 1rem 2rem;
}

.mobile-nav-item-p2w9 {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-nav-item-p2w9:hover {
    color: var(--primary-color);
}

/* 主要内容区域 */
.main-content-p2w9 {
    margin-top: 80px;
}

/* 游戏展示区 */
.hero-showcase-p2w9 {
    padding: 4rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-showcase-p2w9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container-p2w9 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-badge-p2w9 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.game-title-p2w9 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.game-subtitle-p2w9 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.game-tags-p2w9 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item-p2w9 {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.action-buttons-p2w9 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary-p2w9 {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary-p2w9:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

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

.hero-right-p2w9 {
    display: flex;
    justify-content: center;
}

.game-preview-p2w9 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-preview-p2w9:hover {
    transform: scale(1.05);
}

.preview-image-p2w9 {
    width: 100%;
    height: auto;
    display: block;
}

.preview-overlay-p2w9 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-preview-p2w9:hover .preview-overlay-p2w9 {
    opacity: 1;
}

.play-btn-p2w9 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-p2w9:hover {
    transform: scale(1.1);
}

/* 信息卡片区 */
.info-cards-p2w9 {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.cards-grid-p2w9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card-p2w9 {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card-p2w9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.info-card-p2w9:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-color);
}

.card-header-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon-p2w9 {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

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

.card-content-p2w9 {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 游戏截图画廊 */
.screenshots-gallery-p2w9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.screenshot-thumb-p2w9 {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.screenshot-thumb-p2w9:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* 系统要求 */
.system-req-p2w9 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.req-item-p2w9 {
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.guide-card-p2w9 {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.guide-content-p2w9 {
    color: var(--text-secondary);
    line-height: 1.8;
}

.guide-content-p2w9 h1,
.guide-content-p2w9 h2,
.guide-content-p2w9 h3,
.guide-content-p2w9 h4 {
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
}

.guide-content-p2w9 p {
    margin-bottom: 1rem;
}

.guide-content-p2w9 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* 下载区域 */
.download-section-p2w9 {
    padding: 4rem 0;
    background: var(--gradient-secondary);
    position: relative;
}

.download-card-p2w9 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.download-desc-p2w9 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.download-actions-p2w9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.download-btn-main-p2w9 {
    background: white;
    color: var(--primary-color);
    padding: 1.5rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.download-btn-main-p2w9:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-btn-main-p2w9 small {
    font-size: 0.875rem;
    opacity: 0.7;
}

.download-info-p2w9 {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item-p2w9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

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

.links-grid-p2w9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.link-card-p2w9 {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-card-p2w9:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.link-content-p2w9 {
    flex: 1;
}

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

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

.link-icon-p2w9 {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* 页脚 */
.footer-section-p2w9 {
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

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

.footer-left-p2w9 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.footer-icon-p2w9 {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-title-p2w9 {
    font-weight: 600;
    color: var(--text-primary);
}

.footer-desc-p2w9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.copyright-text-p2w9 {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* 图片灯箱 */
.lightbox-overlay-p2w9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-content-p2w9 {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image-p2w9 {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}

.lightbox-close-p2w9 {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.lightbox-close-p2w9:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* 隐藏内容区域 */
.hidden-content-area-p2w9 {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* 空状态样式 */
.no-p2w9enshots,
.no-p2w9s {
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle-p2w9 {
        display: flex;
    }
    
    .mobile-menu-p2w9.active {
        display: flex;
    }
    
    .hero-container-p2w9 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .game-title-p2w9 {
        font-size: 2.5rem;
    }
    
    .action-buttons-p2w9 {
        justify-content: center;
    }
    
    .cards-grid-p2w9 {
        grid-template-columns: 1fr;
    }
    
    .download-info-p2w9 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content-p2w9 {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-wrapper-p2w9 {
        padding: 1rem;
    }
    
    .download-card-p2w9 {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .game-title-p2w9 {
        font-size: 2rem;
    }
    
    .section-title-p2w9 {
        font-size: 2rem;
    }
    
    .download-title-p2w9 {
        font-size: 2rem;
    }
    
    .info-card-p2w9 {
        padding: 1.5rem;
    }
    
    .screenshots-gallery-p2w9 {
        grid-template-columns: repeat(2, 1fr);
    }
}
