* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 50%, #fd79a8 100%);
    min-height: 100vh;
}

.nav-bar-f9j5 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #ff7675;
    transition: all 0.3s ease;
}

/* 纯CSS导航栏滚动效果 - 当页面滚动时增强阴影 */
body:not(:target) .nav-bar-f9j5:hover,
.nav-bar-f9j5:focus-within {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

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

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

.logo-img-f9j5 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff7675;
}

.logo-text-f9j5 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3436;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.nav-link-f9j5 {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-f9j5:hover {
    background: #ff7675;
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-btn-f9j5 {
    display: none;
    font-size: 1.5rem;
    color: #2d3436;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn-f9j5:hover {
    background: #ff7675;
    color: white;
}

.mobile-menu-overlay-f9j5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-content-f9j5 {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .mobile-menu-content-f9j5 {
        width: 100%;
        max-width: 320px;
    }
}

.mobile-menu-overlay-f9j5.active .mobile-menu-content-f9j5 {
    transform: translateX(0);
}

.mobile-menu-header-f9j5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #ff7675;
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
}

.mobile-menu-title-f9j5 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3436;
}

.mobile-menu-close-f9j5 {
    font-size: 1.5rem;
    color: #2d3436;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close-f9j5:hover {
    background: #ff7675;
    color: white;
}

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

.mobile-nav-link-f9j5 {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #2d3436;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-link-f9j5:hover {
    background: #ff7675;
    color: white;
    padding-left: 30px;
}

.desktop-f9j5 {
    display: flex;
}

.hero-section-f9j5 {
    margin-top: 70px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
    position: relative;
    overflow: hidden;
}

.hero-section-f9j5::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

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

.hero-container-f9j5 {
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-image-wrapper-f9j5 {
    position: relative;
}

.hero-image-f9j5 {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image-f9j5:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-text-content-f9j5 {
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title-f9j5 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #ffeaa7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-f9j5 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-tags-f9j5 {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tag-item-f9j5 {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.download-btn-primary-f9j5 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #ff7675, #fd79a8);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 118, 117, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn-primary-f9j5:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 118, 117, 0.6);
    background: linear-gradient(45deg, #fd79a8, #ff7675);
}

.main-content-f9j5 {
    background: white;
}

.section-wrapper-f9j5 {
    padding: 80px 20px;
}

.alt-bg-f9j5 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container-max-width-f9j5 {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title-f9j5 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-divider-f9j5 {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff7675, #fd79a8);
    margin: 0 auto;
    border-radius: 2px;
}

.content-grid-f9j5 {
    /* display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px; */
    align-items: center;
}

.intro-paragraph-f9j5 {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #636e72;
    text-align: justify;
}

.highlight-box-f9j5 {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 5px solid #ff7675;
}

.highlight-title-f9j5 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 10px;
}

.highlight-text-f9j5 {
    color: #636e72;
    line-height: 1.7;
}

.content-image-f9j5 {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-image-f9j5:hover {
    transform: scale(1.05);
}

.features-grid-f9j5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card-f9j5 {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ff7675;
}

.feature-card-f9j5:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon-f9j5 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title-f9j5 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.feature-desc-f9j5 {
    color: #636e72;
    line-height: 1.6;
}

.special-features-f9j5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.special-feature-item-f9j5 {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    padding: 30px;
    border-radius: 20px;
    color: white;
}

.special-title-f9j5 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.special-desc-f9j5 {
    line-height: 1.7;
    opacity: 0.9;
}

.screenshots-grid-f9j5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

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

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

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

.screenshot-overlay-f9j5 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.screenshot-title-f9j5 {
    font-size: 1.1rem;
    font-weight: bold;
}

.additional-images-f9j5 {
    margin-top: 30px;
}

.image-row-f9j5 {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
}

.portrait-img-f9j5 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.landscape-img-f9j5 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-section-f9j5 {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

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

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

.download-title-f9j5 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.download-subtitle-f9j5 {
    font-size: 1.2rem;
    opacity: 0.9;
}

.download-buttons-f9j5 {
    margin-bottom: 40px;
}

.download-btn-main-f9j5 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #ff7675, #fd79a8);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 15px 40px rgba(255, 118, 117, 0.4);
    transition: all 0.3s ease;
}

.download-btn-main-f9j5:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 118, 117, 0.6);
}

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

.btn-text-f9j5 strong {
    font-size: 1.1rem;
}

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

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

.info-item-f9j5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-section-f9j5 {
    background: #2d3436;
    color: white;
    padding: 50px 20px 20px;
}

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

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

.footer-logo-img-f9j5 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text-f9j5 {
    font-size: 1.5rem;
    color: #ff7675;
}

.footer-desc-f9j5 {
    color: #b2bec3;
    line-height: 1.6;
}

.footer-section-title-f9j5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ff7675;
}

.footer-links-list-f9j5 {
    list-style: none;
}

.footer-links-list-f9j5 li {
    margin-bottom: 10px;
}

.footer-link-f9j5 {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-f9j5:hover {
    color: #ff7675;
}

/* 友链样式 */
.friend-link-item-f9j5 {
    font-size: 0.9rem;
    position: relative;
}

.friend-link-item-f9j5:before {
    content: "🔗";
    margin-right: 5px;
    font-size: 0.8rem;
}

.friend-link-item-f9j5:hover {
    color: #74b9ff;
    transform: translateX(3px);
}

.footer-bottom-f9j5 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #636e72;
}

.copyright-text-f9j5 {
    color: #b2bec3;
}

@media (max-width: 768px) {
    /* 移动端完全隐藏导航栏 */
    .nav-bar-f9j5 {
        display: none !important;
    }
    
    /* 移除导航栏后，调整页面顶部间距 */
    body {
        padding-top: 0 !important;
    }
    
    .hero-section-f9j5 {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }
    
    .hero-section-f9j5 {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }
    
    .hero-content-f9j5 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title-f9j5 {
        font-size: 2.5rem;
    }
    
    .content-grid-f9j5 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid-f9j5 {
        grid-template-columns: 1fr;
    }
    
    .special-features-f9j5 {
        grid-template-columns: 1fr;
    }
    
    .image-row-f9j5 {
        grid-template-columns: 1fr;
    }
    
    .download-info-f9j5 {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content-f9j5 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-wrapper-f9j5 {
        padding: 50px 20px;
    }
    
    .section-title-f9j5 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* 超小屏幕也隐藏导航栏 */
    .nav-bar-f9j5 {
        display: none !important;
    }
    
    /* 调整超小屏幕的页面布局 */
    .hero-section-f9j5 {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    .hero-section-f9j5 {
        margin-top: 0 !important;
        padding-top: 15px !important;
    }
    
    .hero-title-f9j5 {
        font-size: 2rem;
    }
    
    .hero-subtitle-f9j5 {
        font-size: 1.1rem;
    }
    
    .hero-tags-f9j5 {
        justify-content: center;
    }
    
    .download-title-f9j5 {
        font-size: 2rem;
    }
    
    .download-btn-main-f9j5 {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* 游戏攻略部分样式 */
.guide-content-f9j5per {
    max-width: 100%;
    margin: 0 auto;
}

.guide-f9j5ent {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.guide-f9j5ent h1,
.guide-f9j5ent h2,
.guide-f9j5ent h3,
.guide-f9j5ent h4,
.guide-f9j5ent h5,
.guide-f9j5ent h6 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.guide-f9j5ent h1 {
    font-size: 1.8rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.guide-f9j5ent h2 {
    font-size: 1.5rem;
    color: #e74c3c;
}

.guide-f9j5ent h3 {
    font-size: 1.3rem;
    color: #f39c12;
}

.guide-f9j5ent p {
    margin-bottom: 15px;
    text-align: justify;
}

.guide-f9j5ent ul,
.guide-f9j5ent ol {
    margin: 15px 0;
    padding-left: 25px;
}

.guide-f9j5ent li {
    margin-bottom: 8px;
}

.guide-f9j5ent blockquote {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    margin: 20px 0;
    padding: 15px 20px;
    font-style: italic;
    color: #555;
}

.guide-f9j5ent code {
    background: #f1f2f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e74c3c;
}

.guide-f9j5ent pre {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.guide-f9j5ent pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.guide-f9j5ent table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.guide-f9j5ent th,
.guide-f9j5ent td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.guide-f9j5ent th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.guide-f9j5ent img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 富文本内容增强样式 */
.guide-f9j5ent .highlight {
    background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.guide-f9j5ent .warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #f39c12;
}

.guide-f9j5ent .info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #17a2b8;
}

.guide-f9j5ent .success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #28a745;
}

.guide-f9j5ent .step-f9j5er {
    display: inline-block;
    background: #3498db;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 8px;
}

.guide-f9j5ent .character-f9j5 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.guide-f9j5ent .character-f9j5 h4 {
    color: white;
    margin-top: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.guide-f9j5ent .tip-box {
    background: #f8f9fa;
    border: 2px dashed #6c757d;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    position: relative;
}

.guide-f9j5ent .tip-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 15px;
    background: #f8f9fa;
    padding: 0 5px;
    font-size: 1.2rem;
}

.guide-f9j5ent kbd {
    background: #212529;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guide-f9j5ent .progress-bar {
    background: #e9ecef;
    border-radius: 10px;
    height: 20px;
    margin: 10px 0;
    overflow: hidden;
}

.guide-f9j5ent .progress-f9j5 {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* 攻略部分响应式设计 */
@media (max-width: 768px) {
    .guide-f9j5ent {
        padding: 20px;
        font-size: 1rem;
    }
    
    .guide-f9j5ent h1 {
        font-size: 1.5rem;
    }
    
    .guide-f9j5ent h2 {
        font-size: 1.3rem;
    }
    
    .guide-f9j5ent h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .guide-f9j5ent {
        padding: 15px;
        font-size: 0.95rem;
    }
}

/* 攻略中插入的截图样式 */
.guide-screenshot-f9j5per {
    margin: 25px 0 !important;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-screenshot-f9j5per:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.guide-screenshot-f9j5per img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.guide-screenshot-f9j5per img:hover {
    transform: scale(1.02);
}

.guide-screenshot-f9j5per p {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    font-size: 13px !important;
    color: #6c757d !important;
    font-style: italic !important;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .guide-screenshot-f9j5per {
        margin: 20px 0 !important;
        padding: 12px;
    }
    
    .guide-screenshot-f9j5per p {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .guide-screenshot-f9j5per {
        margin: 15px 0 !important;
        padding: 10px;
    }
}

/* 攻略内容中的图片居中样式 */
.guide-f9j5ent img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    height: auto !important;
}
