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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* 头部导航 */
.header-nav-z9x2q {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff6b9d;
}

.navbar-main-r5t8m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

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

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

.nav-menu-t2h5j {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link-x9p3q {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-x9p3q:hover {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

/* 移动端导航 */
.nav-toggle-q6w9r {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle-q6w9r span {
    width: 25px;
    height: 3px;
    background: #ff6b9d;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 主要内容区域 */
.main-content-l4m8n {
    padding-top: 2rem;
}

/* 新英雄区域 */
.hero-banner-new-x8k4m {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.hero-background-overlay-p9w2n {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(78, 205, 196, 0.15));
    z-index: 1;
}

.hero-particles-z7x3k {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

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

.hero-main-content-q5m8x {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-left-content-w6n2p {
    color: white;
}

.game-icon-floating-k9m4x {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.floating-icon-t3w7k {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.icon-glow-effect-s8p5n {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.3; transform: scale(1); }
    to { opacity: 0.6; transform: scale(1.1); }
}

.game-title-section-r4k9m {
    margin-bottom: 1.5rem;
}

.main-game-title-x7n3p {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.english-subtitle-m2w8k {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.title-underline-q6x4n {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.game-description-brief-k8m3x {
    margin-bottom: 1.8rem;
}

.hero-desc-text-w9p2k {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-desc-sub-t5n7x {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.game-features-quick-s4k8m {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item-mini-x2w9p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item-mini-x2w9p:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item-mini-x2w9p i {
    font-size: 1.2rem;
    color: #ff6b9d;
}

.hero-download-section-m7k3x {
    margin-bottom: 2rem;
}

.hero-download-btn-p8w4n {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #ff6b9d, #ff8a80);
    color: white;
    text-decoration: none;
    padding: 0.6rem 2.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 1.2rem;
}

.hero-download-btn-p8w4n:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(255, 107, 157, 0.6);
}

.btn-icon-k2m9x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

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

.btn-text-x5n7k strong {
    font-size: 1rem;
    margin-bottom: 2px;
}

.btn-text-x5n7k small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-stats-q3w8m {
    display: flex;
    gap: 2rem;
}

.stat-mini-r7k4x {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-mini-r7k4x i {
    color: #4ecdc4;
}

.hero-right-content-t9m5x {
    position: relative;
}

.game-preview-container-w4k7n {
    position: relative;
}

.preview-main-image-s6p3m {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.main-preview-img-x8k2n {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.preview-main-image-s6p3m:hover .main-preview-img-x8k2n {
    transform: scale(1.05);
}

.image-overlay-gradient-m9w4p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.preview-thumbnails-k5x8m {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.thumb-item-q2w7k {
    width: 90px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-item-q2w7k.active {
    border-color: #ff6b9d;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.thumb-item-q2w7k:hover {
    transform: translateY(-2px);
}

.thumb-img-p4n9x {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 通用区域样式 */
section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.section-title-r9m4x {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    position: relative;
}

.section-title-r9m4x::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
    border-radius: 2px;
}

/* 游戏介绍区域 */
.game-intro-section-w2k6n {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.intro-content-p7s3k {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-paragraph-t6w2x {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.game-stats-k3m7p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item-x9w4n {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ff6b9d;
}

.stat-item-x9w4n i {
    color: #ff6b9d;
    font-size: 1.2rem;
}

.intro-screenshot-p2w7x {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 游戏特色区域 */
.features-section-m8k4p {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 20px;
    padding: 3rem 2rem;
}

.features-grid-x7n2k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card-q4m8x {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card-q4m8x:hover {
    transform: translateY(-5px);
}

.feature-icon-s6p3n {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title-w9k2m {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

/* 截图区域 */
.screenshots-section-k6m3p {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.screenshots-grid-y8n4k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.screenshot-item-x2w7m {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.screenshot-img-p5k9n {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* 攻略和资讯区域 */
.guides-section-m3k7p,
.news-section-p9m4x {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.guides-grid-x8n2k,
.news-grid-k7x3n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card-q5m9x,
.news-card-w5m8p {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #4ecdc4;
}

.guide-card-q5m9x:hover,
.news-card-w5m8p:hover {
    transform: translateY(-3px);
}

.guide-title-w2k6n,
.news-title-q2k6x {
    margin-bottom: 1rem;
}

.guide-link-t7p4m,
.news-link-t9p4m {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.guide-link-t7p4m:hover,
.news-link-t9p4m:hover {
    color: #4ecdc4;
}

.guide-excerpt-s4x8k,
.news-excerpt-s7x2k {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide-date-y6n3p,
.news-date-y4n8m {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* CTA区域 */
.download-cta-section-x6m9p {
    background: linear-gradient(135deg, #ff6b9d, #4ecdc4);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.cta-title-w8m2p {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-desc-t5x9k {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.download-btn-secondary-s3k8m:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 页脚 */
.footer-main-p7k3x {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-text-t8n5m {
    margin-bottom: 0.5rem;
}

.footer-disclaimer-x4m7k {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container-fluid-w7k3n {
        padding: 0 15px;
    }

    .nav-menu-t2h5j {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu-t2h5j.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle-q6w9r {
        display: flex;
    }

    .nav-toggle-q6w9r.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle-q6w9r.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-q6w9r.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-title-m8n2p {
        font-size: 1.4rem;
    }

    .hero-main-content-q5m8x {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-banner-new-x8k4m {
        min-height: auto;
        padding: 3rem 0;
    }

    .main-game-title-x7n3p {
        font-size: 2.5rem;
    }

    .hero-desc-text-w9p2k {
        font-size: 1.2rem;
    }

    .game-features-quick-s4k8m {
        grid-template-columns: 1fr;
    }

    .download-stats-q3w8m {
        justify-content: center;
    }

    .preview-thumbnails-k5x8m {
        gap: 0.8rem;
    }

    .thumb-item-q2w7k {
        width: 70px;
        height: 53px;
    }

    .main-preview-img-x8k2n {
        max-height: 300px;
    }

    .intro-content-p7s3k {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-stats-k3m7p {
        grid-template-columns: 1fr;
    }

    .game-header-z3w6p {
        flex-direction: column;
        text-align: center;
    }

    .game-title-main-p9w2k {
        font-size: 1.8rem;
    }

    .section-title-r9m4x {
        font-size: 1.6rem;
    }

    .cta-title-w8m2p {
        font-size: 1.8rem;
    }

    .features-grid-x7n2k,
    .screenshots-grid-y8n4k,
    .guides-grid-x8n2k,
    .news-grid-k7x3n {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .game-info-card-e5r8m {
        padding: 1.5rem;
    }

    .download-btn-primary-s8k2m,
    .download-btn-secondary-s3k8m {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    section {
        padding: 1.5rem 1rem;
    }
}

/* 友情链接样式 - 我的女友是恶霸主题 */
.friend-links-section-nii {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.15);
}

.friend-links-title-nii {
    color: #ff4500;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(255, 69, 0, 0.3);
    position: relative;
}

.friend-links-title-nii::before {
    content: '😈';
    margin-right: 8px;
}

.friend-links-container-nii {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.friend-link-nii {
    display: block;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 69, 0, 0.6);
    border-radius: 10px;
    color: #d2691e;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
}

.friend-link-nii:hover {
    background: linear-gradient(135deg, #ff4500, #ff8c00);
    color: white;
    border-color: #ff4500;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

/* 受管下载确认弹窗 */
.download-confirm-modal-ni1 {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(31, 41, 55, 0.56);
}
.download-confirm-modal-ni1[hidden] {
    display: none;
}
.download-confirm-panel-ni1 {
    width: min(420px, 100%);
    padding: 28px;
    border: 2px solid rgba(255, 107, 157, 0.5);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 56px rgba(31, 41, 55, 0.28);
    text-align: center;
}
.download-confirm-panel-ni1 h2 {
    margin: 0 0 10px;
    color: #2c3e50;
    font-size: 1.45rem;
}
.download-confirm-panel-ni1 p {
    margin: 0;
    color: #5c6670;
    line-height: 1.65;
}
.download-confirm-actions-ni1 {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}
.download-confirm-actions-ni1 button {
    min-width: 112px;
    border: 0;
    border-radius: 8px;
    padding: 11px 18px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}
.download-cancel-ni1 {
    background: #edf1f5;
    color: #46515d;
}
.download-continue-ni1 {
    background: #ff6b9d;
    color: #ffffff;
}
.download-confirm-actions-ni1 button:hover,
.download-confirm-actions-ni1 button:focus-visible {
    filter: brightness(0.95);
    outline: 3px solid rgba(78, 205, 196, 0.45);
    outline-offset: 2px;
}
@media (max-width: 480px) {
    .download-confirm-panel-ni1 { padding: 22px 18px; }
    .download-confirm-actions-ni1 { flex-direction: column-reverse; }
    .download-confirm-actions-ni1 button { width: 100%; }
}
