/* Temp5 模板 - 科技霓虹风格 */
/* 类名前缀: 随机后缀 */

/* CSS变量 */
:root {
    --primary-neon: #00ffff;
    --secondary-neon: #ff0080;
    --accent-neon: #80ff00;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-neon: rgba(0, 255, 255, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.3);
    --gradient-neon: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* 导航栏 */
.nav-bar-m9x4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-neon);
    transition: all var(--transition);
}

.nav-container-m9x4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo-m9x4 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-m9x4 {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--primary-neon);
    filter: drop-shadow(0 0 10px var(--primary-neon));
}

.logo-text-m9x4 {
    font-size: 20px;
    font-weight: bold;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link-m9x4 {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all var(--transition);
    position: relative;
}

.nav-link-m9x4:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
    background: rgba(0, 255, 255, 0.1);
}

.mobile-menu-btn-m9x4 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all var(--transition);
    background: none;
    border: none;
}

.mobile-menu-btn-m9x4:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.menu-line-m9x4 {
    width: 24px;
    height: 3px;
    background: var(--primary-neon);
    border-radius: 2px;
    transition: all var(--transition);
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.mobile-menu-btn-m9x4:hover .menu-line-m9x4 {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* 菜单打开时的动画效果 */
.mobile-menu-btn-m9x4.active .menu-line-m9x4:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn-m9x4.active .menu-line-m9x4:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay-m9x4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay-m9x4.show {
    opacity: 1;
}

.mobile-menu-content-m9x4 {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-header-m9x4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-neon);
}

.mobile-menu-title-m9x4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-neon);
}

.mobile-menu-close-m9x4 {
    font-size: 24px;
    color: var(--primary-neon);
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-links-m9x4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.mobile-nav-link-m9x4 {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    transition: all var(--transition);
}

.mobile-nav-link-m9x4:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--shadow-neon);
}

/* 英雄区域 */
.hero-section-m9x4 {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-bg);
}

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

.neon-grid-m9x4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.floating-particles-m9x4 {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle-m9x4 {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-neon);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-m9x4:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-m9x4:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    background: var(--secondary-neon);
}

.particle-m9x4:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
    background: var(--accent-neon);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-20px); opacity: 1; }
}

.hero-container-m9x4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content-m9x4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image-wrapper-m9x4 {
    position: relative;
    text-align: center;
}

.hero-image-m9x4 {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--primary-neon);
    box-shadow: var(--shadow-neon);
}

.image-glow-m9x4 {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
}

.hero-text-content-m9x4 {
    z-index: 1;
}

.game-badge-m9x4 {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--primary-neon);
    border-radius: 20px;
    color: var(--primary-neon);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-neon);
}

.hero-title-m9x4 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle-m9x4 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-tags-m9x4 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag-item-m9x4 {
    padding: 6px 14px;
    background: rgba(128, 255, 0, 0.2);
    border: 1px solid var(--accent-neon);
    border-radius: 20px;
    color: var(--accent-neon);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-download-btn-m9x4 {
    display: flex;
    gap: 20px;
}

.download-btn-primary-m9x4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-neon);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.download-btn-primary-m9x4:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
}

.learn-more-btn-m9x4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-neon);
    text-decoration: none;
    border: 2px solid var(--primary-neon);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
}

.learn-more-btn-m9x4:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* 主要内容 */
.main-content-m9x4 {
    margin-top: 70px;
}

/* 通用区域样式 */
.section-wrapper-m9x4 {
    padding: 80px 0;
}

.alt-bg-m9x4 {
    background: var(--bg-card);
}

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

.section-header-m9x4 {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-m9x4 {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.title-underline-m9x4 {
    width: 100px;
    height: 3px;
    background: var(--gradient-neon);
    margin: 0 auto;
    border-radius: 2px;
}

/* 游戏介绍区域 */
.intro-content-grid-m9x4 {
    display: block;
}

.intro-card-m9x4 {
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all var(--transition);
}

.intro-card-m9x4:hover {
    box-shadow: var(--shadow-neon);
    border-color: var(--primary-neon);
}

.card-header-m9x4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon-m9x4 {
    font-size: 1.5rem;
    color: var(--primary-neon);
}

.card-title-m9x4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-primary);
}

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

.screenshots-gallery-m9x4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.screenshot-thumb-m9x4 {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--border-neon);
    transition: all var(--transition);
}

.screenshot-thumb-m9x4:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}


/* 游戏攻略区域 */
.guide-content-wrapper-m9x4 {
    max-width: 100%;
    margin: 0 auto;
}

.guide-card-m9x4 {
    background: var(--bg-dark);
    border: 1px solid var(--border-neon);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-neon);
}

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

.guide-content-m9x4 h1,
.guide-content-m9x4 h2,
.guide-content-m9x4 h3,
.guide-content-m9x4 h4,
.guide-content-m9x4 h5,
.guide-content-m9x4 h6 {
    color: var(--text-primary);
    margin: 30px 0 15px 0;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-content-m9x4 p {
    margin-bottom: 20px;
}

/* 下载区域 */
.download-section-m9x4 {
    background: var(--gradient-bg);
    position: relative;
}

.download-content-m9x4 {
    text-align: center;
}

.download-header-m9x4 {
    margin-bottom: 40px;
}

.download-title-m9x4 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-desc-m9x4 {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.download-buttons-m9x4 {
    margin-bottom: 50px;
}

.download-btn-main-m9x4 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--gradient-neon);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all var(--transition);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.download-btn-main-m9x4:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.5);
}

.btn-icon-section-m9x4 {
    font-size: 1.5rem;
}

.btn-text-section-m9x4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-info-m9x4 {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.info-item-m9x4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.info-item-m9x4 i {
    color: var(--primary-neon);
    font-size: 1.2rem;
}

/* 友情链接区域 */
.links-section-m9x4 {
    background: var(--bg-card);
}

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

.link-card-m9x4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-neon);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition);
}

.link-card-m9x4:hover {
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-neon);
    transform: translateX(5px);
}

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

.link-title-m9x4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.link-url-m9x4 {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.link-arrow-m9x4 {
    color: var(--primary-neon);
    font-size: 1.2rem;
    transition: all var(--transition);
}

.link-card-m9x4:hover .link-arrow-m9x4 {
    transform: translateX(5px);
}

.no-links-m9x4 {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

/* 页脚 */
.footer-section-m9x4 {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-neon);
    padding: 40px 0 20px 0;
}

.footer-content-m9x4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo-section-m9x4 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-img-m9x4 {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--primary-neon);
}

.footer-logo-text-m9x4 {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc-m9x4 {
    color: var(--text-secondary);
}

.footer-section-title-m9x4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.footer-links-list-m9x4 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-m9x4 {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
}

.footer-link-m9x4:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 5px var(--primary-neon);
}

.footer-bottom-m9x4 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-neon);
}

.copyright-text-m9x4 {
    color: var(--text-muted);
}

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

.lightbox-content-m9x4 {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-m9x4 {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow-neon);
}

.lightbox-close-m9x4 {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--primary-neon);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: all var(--transition);
}

.lightbox-close-m9x4:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 20px var(--secondary-neon);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .mobile-menu-btn-m9x4 {
        display: flex;
    }

    .nav-menu-m9x4 {
        display: none !important;
    }

    .hero-section-m9x4 {
        padding-top: 90px;
        min-height: calc(100vh - 20px);
    }

    .hero-content-m9x4 {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title-m9x4 {
        font-size: 2.5rem;
    }

    .hero-download-btn-m9x4 {
        flex-direction: column;
        align-items: center;
    }


    .download-info-m9x4 {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content-m9x4 {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .section-title-m9x4 {
        font-size: 2rem;
    }

    .download-title-m9x4 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section-m9x4 {
        padding-top: 85px;
    }

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

    .section-title-m9x4 {
        font-size: 1.8rem;
    }

    .intro-card-m9x4,
    .feature-item-m9x4,
    .guide-card-m9x4 {
        padding: 20px;
    }

    .screenshots-gallery-m9x4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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