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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    min-height: 100vh;
}

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

/* 头部导航 */
.nav-header-z9m4 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-header-z9m4 .container-w7n3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img-r2t6 {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.site-title-u4v7 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav-l8s1 {
    display: flex;
}

.nav-list-j6k9 {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link-h3n5 {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-h3n5:hover {
    color: #ff6b9d;
    transform: translateY(-2px);
}

.nav-link-h3n5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    transition: width 0.3s ease;
}

.nav-link-h3n5:hover::after {
    width: 100%;
}

/* 移动端菜单按钮 */
.mobile-menu-btn-d9f2 {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff6b9d;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn-d9f2:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: scale(1.1);
}

/* 移动端导航覆盖层 */
.mobile-nav-overlay-a7c4 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-content-b8e5 {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #ffeef8 100%);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay-a7c4.active .mobile-nav-content-b8e5 {
    transform: translateX(0);
}

.close-btn-x1y3 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff6b9d;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn-x1y3:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-list-f6g7 {
    list-style: none;
    margin-top: 60px;
}

.mobile-nav-list-f6g7 li {
    margin-bottom: 15px;
}

.mobile-nav-link-i9j2 {
    display: block;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mobile-nav-link-i9j2:hover {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    transform: translateX(10px);
}

/* 主内容区域 */
.main-content-q4w8 {
    margin-top: 90px;
}

/* 英雄区域 */
.hero-section-t7y2 {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 50%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section-t7y2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.game-header-m5n8 {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.game-icon-wrapper-p9q1 {
    flex-shrink: 0;
}

.game-icon-large-s3t6 {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
}

.game-icon-large-s3t6:hover {
    transform: scale(1.05) rotate(5deg);
}

.game-info-v2x5 {
    flex: 1;
}

.game-title-k8l4 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-subtitle-n7o3 {
    display: block;
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-top: 5px;
}

.game-tags-r4s7 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag-item-e6f9 {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
}

.tag-item-e6f9:hover {
    transform: translateY(-2px) scale(1.05);
}

.game-description-h8i2 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.download-section-c9d1 {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn-primary-a5b8 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-btn-primary-a5b8::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: left 0.5s ease;
}

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

.download-btn-primary-a5b8:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.version-info-f3g6 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.version-text-j7k1, .platform-text-l2m5 {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* 内容区域 */
.content-section-u6v9 {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.section-title-x4y7 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
}

.section-title-x4y7 i {
    color: #ff6b9d;
    font-size: 1.8rem;
}

/* 文章内容 */
.content-article-z8a2 {
    max-width: 800px;
}

.article-text-b5c8 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.image-wrapper-d3e6 {
    margin: 30px 0;
    text-align: center;
}

.article-image-f7g1 {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-image-f7g1:hover {
    transform: scale(1.02);
}

/* 特色网格 */
.features-grid-h9i3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card-j2k5 {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card-j2k5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
}

.feature-card-j2k5:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.2);
}

.feature-icon-l6m9 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-title-n8o1 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-desc-p4q7 {
    color: #666;
    line-height: 1.6;
}

/* 截图网格 */
.screenshots-grid-r5s8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.screenshot-item-t9u2 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.screenshot-img-v3w6 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* 攻略和资讯列表 */
.guide-list-x7y1, .news-list-n3o6 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-item-z4a8, .news-item-p9q2 {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b9d;
}

.guide-item-z4a8:hover, .news-item-p9q2:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.guide-title-b6c9, .news-title-r5s8 {
    margin-bottom: 15px;
}

.guide-link-d2e5, .news-link-t7u1 {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.guide-link-d2e5:hover, .news-link-t7u1:hover {
    color: #ff6b9d;
}

.guide-summary-f8g2, .news-summary-v3w6 {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guide-meta-h4i7, .news-meta-x1y4 {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #999;
}

.news-category-b7c1 {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* 页脚 */
.footer-section-e8f2 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-title-k2l5 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6b9d;
}

.footer-desc-m8n1 {
    line-height: 1.6;
    color: #bdc3c7;
}

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

.friend-links-s2t5 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.friend-link-u8v1 {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.friend-link-u8v1:hover {
    color: #ff6b9d;
    transform: translateX(5px);
}

.footer-bottom-w3x6 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.copyright-text-y7z1 {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .desktop-nav-l8s1 {
        display: none;
    }
    
    .mobile-menu-btn-d9f2 {
        display: block;
    }
    
    .mobile-nav-overlay-a7c4 {
        display: block;
    }
    
    .game-header-m5n8 {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .game-icon-large-s3t6 {
        width: 100px;
        height: 100px;
    }
    
    .game-title-k8l4 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .download-section-c9d1 {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid-h9i3 {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid-r5s8 {
        grid-template-columns: 1fr;
    }
    
    .footer-content-g4h7 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .friend-links-s2t5 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .container-w7n3 {
        padding: 0 15px;
    }
    
    .hero-section-t7y2 {
        padding: 40px 0;
    }
    
    .content-section-u6v9 {
        padding: 40px 0;
    }
}

/* 文章页面样式 */
.article-content-m8n2 {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.1);
    overflow: hidden;
}

.article-header-p5q9 {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.article-title-r3s7 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.3;
}

.article-meta-t6u1 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
}

.article-date-v9w3, .article-views-x2y5 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-category-z4a7 {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-body-b8c2 {
    padding: 40px;
    line-height: 1.8;
}

.article-paragraph-d5e9 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.article-subtitle-f7g3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b9d;
    position: relative;
}

.article-subtitle-f7g3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
}

.article-subheading-h1i4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #ff6b9d;
}

.article-list-j6k8 {
    margin: 20px 0;
    padding-left: 20px;
}

.article-list-j6k8 li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
}

.article-list-j6k8 li::marker {
    color: #ff6b9d;
}

.article-conclusion-l9m4 {
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #ff6b9d;
}

.article-footer-n7o2 {
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
}

.article-tags-p1q5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag-label-r4s8 {
    font-weight: 600;
    color: #666;
}

.article-tag-t7u3 {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.article-tag-t7u3:hover {
    transform: translateY(-2px);
}

.article-nav-v9w6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn-x2y8 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
}

.back-btn-x2y8:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

@media (max-width: 768px) {
    .article-header-p5q9 {
        padding: 30px 25px 20px;
    }
    
    .article-title-r3s7 {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .article-body-b8c2 {
        padding: 30px 25px;
    }
    
    .article-footer-n7o2 {
        padding: 25px;
    }
    
    .article-meta-t6u1 {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-tags-p1q5 {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .game-title-k8l4 {
        font-size: 1.8rem;
    }
    
    .section-title-x4y7 {
        font-size: 1.6rem;
    }
    
    .mobile-nav-content-b8e5 {
        width: 100%;
    }
    
    .download-btn-primary-a5b8 {
        width: 100%;
        justify-content: center;
    }
    
    .article-title-r3s7 {
        font-size: 1.6rem;
    }
    
    .article-subtitle-f7g3 {
        font-size: 1.4rem;
    }
    
    .article-subheading-h1i4 {
        font-size: 1.2rem;
    }
    
    .article-header-p5q9 {
        padding: 25px 20px 15px;
    }
    
    .article-body-b8c2 {
        padding: 25px 20px;
    }
    
    .article-footer-n7o2 {
        padding: 20px;
    }
} 

/* Rule 21 confirmation UI */
.download-confirm-modal-oc1{position:fixed;inset:0;z-index:10000;display:grid;place-items:center;padding:20px;background:rgba(34,34,55,.56)}
.download-confirm-modal-oc1[hidden]{display:none}
.download-confirm-panel-oc1{width:min(420px,100%);padding:28px;border:2px solid rgba(255,107,157,.5);border-radius:16px;background:#fff;box-shadow:0 18px 56px rgba(34,34,55,.28);text-align:center}
.download-confirm-panel-oc1 h2{margin:0 0 10px;color:#2c3e50;font-size:1.45rem}.download-confirm-panel-oc1 p{margin:0;color:#5c6670;line-height:1.65}
.download-confirm-actions-oc1{display:flex;justify-content:center;gap:12px;margin-top:22px}.download-confirm-actions-oc1 button{min-width:112px;border:0;border-radius:8px;padding:11px 18px;cursor:pointer;font:inherit;font-weight:700}.download-cancel-oc1{background:#edf1f5;color:#46515d}.download-continue-oc1{background:#ff6b9d;color:#fff}.download-confirm-actions-oc1 button:focus-visible{outline:3px solid rgba(78,205,196,.45);outline-offset:2px}
@media(max-width:640px){.download-confirm-panel-oc1{padding:22px 18px}.download-confirm-actions-oc1{flex-direction:column-reverse}.download-confirm-actions-oc1 button{width:100%}}
