/* 母上攻略游戏官网样式 */

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* 容器样式 */
.container-5p9m {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.header-9k2m {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #e91e63;
}

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

.nav-brand-4h8q {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand-icon-2n5w {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-text-8j4r {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e91e63;
}

.nav-menu-5p9d {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link-3m7k {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-3m7k:hover {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    transform: translateY(-2px);
}

/* 新的移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-line.active:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-line.active:nth-child(2) {
    opacity: 0;
}

.hamburger-line.active:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 新的移动端导航覆盖层 */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-container {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #fff;
    position: relative;
}

.mobile-nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu {
    padding: 20px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item:hover {
    background-color: rgba(233, 30, 99, 0.1);
    padding-left: 25px;
}

.mobile-nav-item.featured {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(240, 98, 146, 0.2));
    border-left: 4px solid #e91e63;
}

.mobile-nav-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.mobile-nav-text {
    flex: 1;
}

.mobile-nav-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.mobile-nav-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-nav-arrow {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.mobile-nav-item:hover .mobile-nav-arrow {
    color: #e91e63;
    transform: translateX(5px);
}

.mobile-nav-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mobile-nav-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

.mobile-nav-list-2q9x {
    list-style: none;
    padding: 20px;
}

.mobile-nav-link-7k3n {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-link-7k3n:hover {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    transform: translateX(10px);
}

/* 主要内容区域 */
.main-content-1z8v {
    margin-top: 70px;
}

/* 英雄区域 */
.hero-section-4p2j {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(102, 126, 234, 0.8));
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section-4p2j::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 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-container-9m6k {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.game-header-2q7p {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.game-icon-8j9m {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-title-4r8s {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-title-icon-7m2q {
    color: #e91e63;
    font-size: 2.5rem;
}

.game-tags-9x5p {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.game-tag-3k7n {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.game-description-5w8j {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.download-section-2x9k {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-btn-primary-4j8m {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    max-width: 300px;
}

.download-btn-primary-4j8m:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.5);
}

.download-info-7p3x {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image-6m9p {
    text-align: center;
}

.cover-image-3x7k {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cover-image-3x7k:hover {
    transform: scale(1.05);
}

/* 通用区域样式 */
.section-8w4j {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.section-8w4j:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-title-2k7x {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title-2k7x i {
    color: #e91e63;
    font-size: 2rem;
}

/* 游戏介绍区域 */
.intro-content-4n8r {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.intro-paragraph-9j5k {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.intro-text-6x3p {
    padding-right: 20px;
}

.story-highlight-7m2x {
    background: linear-gradient(135deg, #fff5f5, #fef7f7);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #e91e63;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-title-4k8n {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 10px;
}

.story-quote-3x9j {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    border-left: 3px solid #e91e63;
    padding-left: 20px;
    margin: 0;
}

.intro-screenshot-5k9r {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.intro-screenshot-5k9r:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.intro-image-8p4w {
    position: relative;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(240, 98, 146, 0.05));
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.intro-main-image {
    margin-bottom: 25px;
    position: relative;
}

.intro-main-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(240, 98, 146, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.intro-small-images {
    display: flex;
    gap: 3%;
}

.intro-small-images .intro-screenshot-5k9r {
    width: 48.5%;
    border-radius: 12px;
}

/* 特色功能区域 */
.features-section-2x7m {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.features-section-2x7m .section-title-2k7x {
    color: #fff;
}

.features-grid-4n8k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card-7j3x {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-7j3x:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-9m2p {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.feature-title-5k8w {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-desc-3x7j {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* 截图区域 */
.screenshots-grid-6k4m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.screenshot-item-3x9j {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.screenshot-item-3x9j:hover {
    transform: scale(1.05);
}

.screenshot-img-7p2k {
    width: 100%;
    height: auto;
    display: block;
}

/* 下载区域 */
.download-section-5m8x {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.download-section-5m8x .section-title-2k7x {
    color: #fff;
}

.download-content-4k7p {
    display: flex;
    justify-content: center;
}

.download-info-card-9j3x {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    border: 2px solid rgba(233, 30, 99, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-card-title-2m8k {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 30px;
}

.download-features-6p4w {
    list-style: none;
    margin-bottom: 40px;
}

.download-features-6p4w li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-features-6p4w i {
    color: #4caf50;
    font-size: 1.2rem;
}

.download-btn-large-8n5r {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #fff;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    width: 100%;
    margin-bottom: 20px;
}

.download-btn-large-8n5r:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5);
}

.download-note-3x7k {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* 攻略和资讯区域 */
.guides-grid-7k2m,
.news-grid-5m8k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.guide-card-4p8x,
.news-card-2x9j {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #e91e63;
}

.guide-card-4p8x:hover,
.news-card-2x9j:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.guide-title-9j5k,
.news-title-4p7k {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.guide-link-3x7m,
.news-link-8j3m {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-link-3x7m:hover,
.news-link-8j3m:hover {
    color: #e91e63;
}

.guide-excerpt-6n4w,
.news-excerpt-6n4w {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guide-meta-2k8r,
.news-meta-9k2x {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #999;
}

.guides-more-4x9k,
.news-more-7k4x {
    text-align: center;
    margin-top: 40px;
}

.more-guides-btn-7j2x,
.more-news-btn-2m9p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.more-guides-btn-7j2x:hover,
.more-news-btn-2m9p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* 友情链接 */
.links-section-6j9m {
    background: #f8f9fa;
}

.links-grid-4k8p {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.link-item-3x7k {
    background: #fff;
    color: #2c3e50;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.link-item-3x7k:hover {
    background: #e91e63;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* 页脚 */
.footer-9m3x {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-title-6n9k {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 15px;
}

.footer-desc-3m7x {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-subtitle-7k2m {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e91e63;
}

.footer-nav-5p9x {
    list-style: none;
}

.footer-nav-5p9x li {
    margin-bottom: 8px;
}

.footer-nav-5p9x a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-5p9x a:hover {
    color: #e91e63;
}

.footer-bottom-8k4m {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright-3x9j {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu-5p9d {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content-3x8r {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .game-title-4r8s {
        font-size: 2.2rem;
    }
    
    .game-header-2q7p {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-content-4n8r {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-image-8p4w {
        order: -1;
    }
    
    .intro-small-images {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-small-images .intro-screenshot-5k9r {
        width: 100%;
    }
    
    .features-grid-4n8k {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid-6k4m {
        grid-template-columns: 1fr;
    }
    
    .guides-grid-7k2m,
    .news-grid-5m8k {
        grid-template-columns: 1fr;
    }
    
    .footer-content-2k7j {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title-2k7x {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .download-info-card-9j3x {
        padding: 30px 20px;
    }
    
    .download-info-7p3x {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container-5p9m {
        padding: 0 15px;
    }
    
    .nav-container-7x3p {
        padding: 0 15px;
    }
    
    .hero-section-4p2j {
        padding: 60px 0;
    }
    
    .section-8w4j {
        padding: 60px 0;
    }
    
    .game-title-4r8s {
        font-size: 1.8rem;
    }
    
    .section-title-2k7x {
        font-size: 1.7rem;
    }
    
    .feature-card-7j3x,
    .guide-card-4p8x,
    .news-card-2x9j {
        padding: 25px 20px;
    }
}

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

.section-8w4j {
    animation: fadeInUp 0.6s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
}

.download-btn-primary-4j8m, .download-btn-large-8n5r { text-decoration: none; }
