/* 重置样式 */
* {
    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-color: #fff;
}

/* 通用容器 */
.z5c632container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.z5c632header {
    background: linear-gradient(135deg, #00c73c, #00a854);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z5c632header .z5c632container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z5c632logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.z5c632nav_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.z5c632header .z5c632container {
    position: relative;
}

.z5c632logo_link {
    color: inherit;
    text-decoration: none;
}

.z5c632logo_link:hover {
    color: #e8f5e8;
}

.z5c632nav_list li.z5c632this > .z5c632nav_link,
.z5c632nav_list li.z5c632this .z5c632nav_link {
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
}

.z5c632nav_link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.z5c632nav_link:hover {
    color: #e8f5e8;
}

.z5c632mobile_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.z5c632mobile_menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* 主要内容区域 */
.z5c632main {
    margin-top: 80px;
}

/* 英雄区域 */
.z5c632hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.z5c632hero .z5c632container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.z5c632hero_title {
    font-size: 3rem;
    font-weight: bold;
    color: #00c73c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.z5c632hero_subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.z5c632hero_features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.z5c632feature_tag {
    background: rgba(0, 199, 60, 0.1);
    color: #00c73c;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 199, 60, 0.3);
}

.z5c632hero_buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.z5c632btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.z5c632btn_primary {
    background: #00c73c;
    color: white;
}

.z5c632btn_primary:hover {
    background: #00a854;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,199,60,0.3);
}

.z5c632btn_secondary {
    background: transparent;
    color: #00c73c;
    border: 2px solid #00c73c;
}

.z5c632btn_secondary:hover {
    background: #00c73c;
    color: white;
}

.z5c632btn_download {
    background: #007bff;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.z5c632btn_download:hover {
    background: #0056b3;
}

.z5c632btn_large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.z5c632hero_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.z5c632hero_main_image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.z5c632hero_main_image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* 删除原来的手机模拟器样式 */
.z5c632phone_mockup {
    display: none;
}

.z5c632screen {
    display: none;
}

/* 下载区域 */
.z5c632download {
    padding: 4rem 0;
    background: white;
}

.z5c632section_title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.z5c632section_subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.z5c632section_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00c73c;
    border-radius: 2px;
}

.z5c632download_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.z5c632download_card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.z5c632download_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.z5c632download_card h3 {
    color: #333;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.z5c632download_card p {
    color: #666;
    margin-bottom: 1rem;
}

.z5c632version_info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #888;
}

.z5c632download_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00c73c;
}

.z5c632download_note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}



/* LINE贴图区域 */
.z5c632stickers {
    padding: 4rem 0;
    background: white;
}

.z5c632stickers_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.z5c632stickers_info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.z5c632sticker_series {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.z5c632sticker_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
}

.z5c632sticker_emoji {
    font-size: 1.5rem;
}

.z5c632stickers_gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.z5c632sticker_preview {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.z5c632sticker_preview:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* LINE游戏区域 */
.z5c632games {
    padding: 4rem 0;
    background: #f8f9fa;
}

.z5c632games_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.z5c632game_card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.z5c632game_card:hover {
    transform: translateY(-5px);
}

.z5c632game_card h3 {
    color: #333;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.z5c632game_card p {
    color: #666;
    margin-bottom: 1rem;
}

.z5c632game_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.z5c632game_features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.z5c632game_features span {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* LINE新闻资讯区域 */
.z5c632news {
    padding: 4rem 0;
    background: white;
}

.z5c632news_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z5c632news_item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00c73c;
    transition: transform 0.3s ease;
}

.z5c632news_item:hover {
    transform: translateY(-3px);
}

.z5c632news_date {
    color: #00c73c;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.z5c632news_item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.z5c632news_item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.z5c632news_link {
    color: #00c73c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.z5c632news_link:hover {
    color: #00a854;
}


































/* 页脚 */
.z5c632footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.z5c632footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z5c632footer_section h3 {
    color: #00c73c;
    margin-bottom: 1rem;
}

.z5c632footer_section ul {
    list-style: none;
}

.z5c632footer_section ul li {
    margin-bottom: 0.5rem;
}

.z5c632footer_section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.z5c632footer_section ul li a:hover {
    color: #00c73c;
}

.z5c632footer_bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* 响应式设计 */
/* 大屏幕设备 (1200px以上) */
@media (min-width: 1200px) {
    .z5c632container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    .z5c632hero_title {
        font-size: 3.5rem;
    }
    
    .z5c632hero_subtitle {
        font-size: 1.4rem;
    }
    
    .z5c632section_title {
        font-size: 3rem;
    }
    
    .z5c632tips_grid {
        max-width: 1000px;
        gap: 2.5rem;
    }
    

}

/* 中等屏幕设备 (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .z5c632container {
        max-width: 960px;
        padding: 0 25px;
    }
    
    .z5c632hero_title {
        font-size: 2.8rem;
    }
    
    .z5c632tips_grid {
        max-width: 800px;
    }
}

/* 平板设备 (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .z5c632container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .z5c632hero_title {
        font-size: 2.5rem;
    }
    
    .z5c632hero_subtitle {
        font-size: 1.1rem;
    }
    
    .z5c632section_title {
        font-size: 2.2rem;
    }
    
    .z5c632tips_grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 1.5rem;
    }
    

    
    .z5c632download_grid,
    .z5c632games_grid,
    .z5c632news_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .z5c632stickers_content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .z5c632sticker_series {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto 1.5rem;
    }
}

/* 手机设备 (768px以下) */
@media (max-width: 768px) {
    .z5c632mobile_menu {
        display: flex;
    }
    
    .z5c632nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #00a854;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .z5c632nav.z5c632active {
        display: block;
    }
    
    .z5c632nav_list {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .z5c632nav_link {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
    }
    
    .z5c632hero .z5c632container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .z5c632hero_title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .z5c632hero_subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .z5c632hero_features {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .z5c632feature_tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .z5c632hero_buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .z5c632btn {
        width: 100%;
        max-width: 280px;
    }
    
    .z5c632hero_main_image {
        max-width: 80%;
        margin: 2rem auto 0;
        border-radius: 15px;
    }
    
    .z5c632section_title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .z5c632section_subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .z5c632container {
        padding: 0 15px;
    }
    
    .z5c632download_grid,
    .z5c632features_grid,
    .z5c632games_grid,
    .z5c632news_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .z5c632download_card,
    .z5c632feature_item,
    .z5c632game_card,
    .z5c632news_item {
        padding: 1.5rem;
    }
    
    .z5c632stickers_content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .z5c632sticker_series {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }
    
    .z5c632stickers_gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .z5c632sticker_preview {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .z5c632cta_buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .z5c632tips_grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .z5c632tutorial_nav {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .z5c632tutorial_tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
    
    .z5c632tutorial_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .z5c632tutorial_step,
    .z5c632tutorial_card {
        padding: 1.5rem;
    }
    
    .z5c632tutorial_cta {
        padding: 2rem 1.5rem;
    }
    
    .z5c632tutorial_actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .z5c632footer_content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}

/* 小屏手机设备 (480px以下) */
@media (max-width: 480px) {
    .z5c632container {
        padding: 0 12px;
    }
    
    .z5c632hero {
        padding: 3rem 0;
        min-height: 70vh;
    }
    
    .z5c632hero_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .z5c632hero_subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .z5c632hero_features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .z5c632feature_tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .z5c632btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .z5c632hero_main_image {
        max-width: 90%;
        border-radius: 12px;
    }
    
    .z5c632section_title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .z5c632section_subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .z5c632download_grid,
    .z5c632features_grid,
    .z5c632games_grid,
    .z5c632news_grid,
    .z5c632tutorial_grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .z5c632download_card,
    .z5c632feature_item,
    .z5c632game_card,
    .z5c632news_item,
    .z5c632tutorial_step,
    .z5c632tutorial_card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .z5c632download_icon,
    .z5c632feature_icon,
    .z5c632game_icon,
    .z5c632card_icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .z5c632step_number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .z5c632step_icon {
        font-size: 1.5rem;
    }
    
    .z5c632tips_grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .z5c632tip_item {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .z5c632tip_icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .z5c632tip_item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .z5c632tip_item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .z5c632stickers_gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .z5c632sticker_preview {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        border-radius: 10px;
    }
    
    .z5c632tutorial_nav {
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .z5c632tutorial_tab {
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .z5c632tutorial_cta {
        padding: 1.5rem 1.2rem;
        border-radius: 15px;
    }
    
    .z5c632tutorial_cta h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .z5c632tutorial_cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .z5c632faq_question {
        padding: 1.2rem;
    }
    
    .z5c632faq_question h4 {
        font-size: 1rem;
    }
    
    .z5c632faq_answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* 超小屏手机设备 (360px以下) */
@media (max-width: 360px) {
    .z5c632container {
        padding: 0 10px;
    }
    
    .z5c632hero_title {
        font-size: 1.6rem;
    }
    
    .z5c632hero_subtitle {
        font-size: 0.9rem;
    }
    
    .z5c632btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .z5c632section_title {
        font-size: 1.6rem;
    }
    
    .z5c632download_card,
    .z5c632feature_item,
    .z5c632game_card,
    .z5c632news_item,
    .z5c632tutorial_step,
    .z5c632tutorial_card,
    .z5c632tip_item {
        padding: 1rem;
    }
    
    .z5c632tutorial_tab {
        max-width: 200px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* 横屏手机设备优化 */
@media (max-height: 500px) and (orientation: landscape) {
    .z5c632hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .z5c632hero_title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .z5c632hero_subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .z5c632hero_features {
        margin-bottom: 1rem;
    }
    
    .z5c632hero_buttons {
        gap: 0.8rem;
    }
    
    .z5c632btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .z5c632btn:hover,
    .z5c632tutorial_tab:hover,
    .z5c632nav_link:hover {
        transform: none;
        box-shadow: none;
    }
    
    .z5c632download_card:hover,
    .z5c632feature_item:hover,
    .z5c632game_card:hover,
    .z5c632news_item:hover,
    .z5c632tutorial_step:hover,
    .z5c632tutorial_card:hover,
    .z5c632tip_item:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .z5c632sticker_preview:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .z5c632btn:active,
    .z5c632tutorial_tab:active {
        transform: scale(0.98);
    }
    
    .z5c632download_card:active,
    .z5c632feature_item:active,
    .z5c632game_card:active,
    .z5c632news_item:active,
    .z5c632tutorial_step:active,
    .z5c632tutorial_card:active,
    .z5c632tip_item:active {
        transform: scale(0.98);
    }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .z5c632hero_main_image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 减少动画偏好设置 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .z5c632btn:hover,
    .z5c632tutorial_tab:hover,
    .z5c632nav_link:hover {
        transform: none;
    }
    
    .z5c632download_card:hover,
    .z5c632feature_item:hover,
    .z5c632game_card:hover,
    .z5c632news_item:hover,
    .z5c632tutorial_step:hover,
    .z5c632tutorial_card:hover,
    .z5c632tip_item:hover {
        transform: none;
    }
}

/* 打印样式 */
@media print {
    .z5c632header,
    .z5c632mobile_menu,
    .z5c632hero_buttons,
    .z5c632tutorial_nav,
    .z5c632tutorial_cta,
    .z5c632footer {
        display: none !important;
    }
    
    .z5c632main {
        margin-top: 0 !important;
    }
    
    .z5c632hero {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
        min-height: auto !important;
    }
    
    .z5c632hero_title {
        color: black !important;
        font-size: 2rem !important;
    }
    
    .z5c632hero_subtitle {
        color: #333 !important;
    }
    
    .z5c632download_card,
    .z5c632feature_item,
    .z5c632game_card,
    .z5c632news_item,
    .z5c632tutorial_step,
    .z5c632tutorial_card,
    .z5c632tip_item {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    .z5c632tutorial_content {
        display: block !important;
    }
    
    .z5c632tutorial_content:not(:first-of-type) {
        page-break-before: always;
    }
    
    body {
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .z5c632container {
        max-width: none !important;
        padding: 0 !important;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .z5c632hero {
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d) !important;
    }
    
    .z5c632hero_title {
        color: #4ade80 !important;
    }
    
    .z5c632hero_subtitle {
        color: #d1d5db !important;
    }
    
    .z5c632feature_tag {
        background: rgba(74, 222, 128, 0.1) !important;
        color: #4ade80 !important;
        border-color: rgba(74, 222, 128, 0.3) !important;
    }
    
    .z5c632download,
    .z5c632stickers,
    .z5c632news {
        background: #1a1a1a !important;
        color: #d1d5db !important;
    }
    
    .z5c632features,
    .z5c632games,
    .z5c632tutorial {
        background: #2d2d2d !important;
        color: #d1d5db !important;
    }
    
    .z5c632section_title {
        color: #f3f4f6 !important;
    }
    
    .z5c632section_subtitle {
        color: #9ca3af !important;
    }
    
    .z5c632download_card,
    .z5c632feature_item,
    .z5c632game_card,
    .z5c632news_item,
    .z5c632tutorial_step,
    .z5c632tutorial_card,
    .z5c632tip_item {
        background: #1a1a1a !important;
        color: #d1d5db !important;
        border: 1px solid #374151 !important;
    }
    
    .z5c632download_card h3,
    .z5c632feature_item h3,
    .z5c632game_card h3,
    .z5c632news_item h3,
    .z5c632tutorial_step h3,
    .z5c632tutorial_card h3,
    .z5c632tip_item h4 {
        color: #f3f4f6 !important;
    }
    
    .z5c632download_card p,
    .z5c632feature_item p,
    .z5c632game_card p,
    .z5c632news_item p,
    .z5c632tutorial_step p,
    .z5c632tutorial_card p,
    .z5c632tip_item p {
        color: #9ca3af !important;
    }
    
    .z5c632tutorial_nav {
        background: #1a1a1a !important;
    }
    
    .z5c632tutorial_tab {
        background: #2d2d2d !important;
        color: #9ca3af !important;
        border-color: #374151 !important;
    }
    
    .z5c632tutorial_tab.z5c632active {
        background: #4ade80 !important;
        color: #1a1a1a !important;
    }
    
    .z5c632tutorial_cta {
        background: #1a1a1a !important;
        color: #d1d5db !important;
    }
    
    .z5c632faq_question {
        background: #2d2d2d !important;
        color: #d1d5db !important;
    }
    
    .z5c632faq_question:hover {
        background-color: #374151 !important;
    }
    
    .z5c632faq_answer {
        color: #9ca3af !important;
    }
}

/* 焦点可见性优化 */
.z5c632btn:focus,
.z5c632tutorial_tab:focus,
.z5c632nav_link:focus {
    outline: 2px solid #00c73c;
    outline-offset: 2px;
}

/* 滚动行为优化 */
html {
    scroll-behavior: smooth;
}

/* 选择文本样式 */
::selection {
    background: rgba(0, 199, 60, 0.3);
    color: #333;
}

::-moz-selection {
    background: rgba(0, 199, 60, 0.3);
    color: #333;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z5c632download_card,
.z5c632feature_item,
.z5c632game_card,
.z5c632news_item,
.z5c632tutorial_step,
.z5c632tutorial_card,
.z5c632tip_item {
    animation: fadeInUp 0.6s ease-out;
}

/* 悬停效果增强 */
.z5c632download_card:hover .z5c632download_icon,
.z5c632feature_item:hover .z5c632feature_icon,
.z5c632game_card:hover .z5c632game_icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* 移动端菜单动画 */
.z5c632mobile_menu.z5c632active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.z5c632mobile_menu.z5c632active span:nth-child(2) {
    opacity: 0;
}

.z5c632mobile_menu.z5c632active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== 常见问题板块 ========== */
.z5c632faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.z5c632faq_list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.z5c632faq_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.z5c632faq_question {
    padding: 1.25rem 1.5rem;
    background: #fff;
}

.z5c632faq_question h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #222;
}

.z5c632faq_answer {
    padding: 0 1.5rem 1.35rem;
    color: #555;
    line-height: 1.65;
    font-size: 0.95rem;
}

.z5c632faq_answer p {
    margin: 0;
}

/* ========== 首页文章网格（5×2） ========== */
.z5c632home_articles {
    padding: 4rem 0;
    background: #fff;
}

.z5c632home_articles_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.z5c632home_article_card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.z5c632home_article_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.z5c632home_article_thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9ecef;
}

.z5c632home_article_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.z5c632home_article_body {
    padding: 0.85rem 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.z5c632home_article_title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z5c632home_article_title:hover {
    color: #00a854;
}

.z5c632home_article_desc {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.z5c632home_article_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: #888;
    margin-top: 0.25rem;
}

.z5c632home_article_date {
    white-space: nowrap;
}

.z5c632quick_channels {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e9ecef;
}

.z5c632quick_channels_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.z5c632quick_channels_list a {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    background: rgba(0, 199, 60, 0.1);
    color: #00a854;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    border: 1px solid rgba(0, 199, 60, 0.25);
}

.z5c632quick_channels_list a:hover {
    background: #00c73c;
    color: #fff;
    border-color: #00c73c;
}

/* ========== 内页布局 ========== */
.z5c632slide_hook:empty {
    display: none;
}

.z5c632inner {
    padding-bottom: 3rem;
}

.z5c632inner_layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    align-items: start;
    padding-top: 1.5rem;
}

.z5c632breadcrumb {
    margin-bottom: 1rem;
}

.z5c632breadcrumb_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    font-size: 0.88rem;
    color: #666;
}

.z5c632breadcrumb_list a {
    color: #00a854;
    text-decoration: none;
}

.z5c632breadcrumb_list a:hover {
    text-decoration: underline;
}

.z5c632article_column,
.z5c632list_column {
    min-width: 0;
}

.z5c632article_header {
    margin-bottom: 1.25rem;
}

.z5c632article_h1,
.z5c632list_h1 {
    font-size: 1.85rem;
    color: #222;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.z5c632article_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.88rem;
    color: #666;
}

.z5c632article_litpic {
    margin: 0 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f3f5;
}

.z5c632article_litpic img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

.z5c632typography {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

.z5c632typography img {
    max-width: 100%;
    height: auto;
}

.z5c632article_gallery {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.z5c632article_gallery_item {
    margin: 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.z5c632article_gallery_item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.z5c632article_gallery figcaption {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: #666;
}

.z5c632diyfield {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.95rem;
}

.z5c632meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 0;
    padding: 0;
}

.z5c632tagitem a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 199, 60, 0.12);
    color: #00a854;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
}

.z5c632prenext,
.z5c632prenext_single {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem 2rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.92rem;
    line-height: 1.5;
}

.z5c632prenext_single a,
.z5c632prenext a {
    color: #00a854;
    text-decoration: none;
}

.z5c632prenext_single a:hover,
.z5c632prenext a:hover {
    text-decoration: underline;
}

.z5c632prenext_item {
    font-size: 0.92rem;
}

.z5c632prenext_next {
    text-align: right;
}

.z5c632block_title {
    font-size: 1.25rem;
    margin: 2.5rem 0 1rem;
    color: #222;
}

.z5c632related_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.z5c632related_item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.z5c632related_thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.z5c632related_link {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.z5c632related_link:hover {
    color: #00a854;
}

.z5c632related_text p {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.z5c632related_compact li {
    font-size: 0.9rem;
    line-height: 1.5;
}

.z5c632excerpt {
    color: #666;
}

/* 列表页 */
.z5c632list_header {
    margin-bottom: 1.5rem;
}

.z5c632list_desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.z5c632list_cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.z5c632list_card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.z5c632list_thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.z5c632list_typename {
    font-size: 0.82rem;
    color: #888;
}

.z5c632list_typename a {
    color: #00a854;
    text-decoration: none;
}

.z5c632list_title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    margin: 0.35rem 0;
    line-height: 1.35;
}

.z5c632list_title:hover {
    color: #00a854;
}

.z5c632list_info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.82rem;
    color: #777;
}

.z5c632list_intro {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.55;
}

/* 分页左右 */
.z5c632pagebar_split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.z5c632pagebar_side {
    flex: 1 1 200px;
    min-width: 0;
}

.z5c632pagebar_side_right {
    text-align: right;
}

.z5c632pagebar_side_right .zzpages,
.z5c632pagebar_side_right .pagelist {
    justify-content: flex-end;
}

.z5c632pages .pagelist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    align-items: center;
}

.z5c632pages .pagelist li,
.z5c632pages .pagelist a {
    display: inline-block;
}

.z5c632pages .pagelist a {
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    border: 1px solid #dee2e6;
    background: #fff;
    font-size: 0.88rem;
}

.z5c632pages .pagelist a:hover {
    border-color: #00c73c;
    color: #00a854;
}

/* 侧栏（与内容页、列表页同步） */
.z5c632sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.z5c632side_block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1rem 0.75rem;
}

.z5c632side_title {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}

.z5c632side_title a {
    color: #222;
    text-decoration: none;
}

.z5c632side_title a:hover {
    color: #00a854;
}

.z5c632side_hint {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    color: #888;
}

.z5c632side_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.z5c632side_item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.6rem;
    align-items: start;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #e9ecef;
}

.z5c632side_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.z5c632side_thumb img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.z5c632side_thumb a {
    display: block;
}

.z5c632side_link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z5c632side_link:hover {
    color: #00a854;
}

.z5c632side_sub {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-top: 0.2rem;
}

.z5c632side_nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
}

.z5c632side_nav a {
    color: #00a854;
    text-decoration: none;
}

.z5c632side_list_plain a {
    color: #333;
    text-decoration: none;
    font-size: 0.86rem;
}

.z5c632side_list_plain a:hover {
    color: #00a854;
}

.z5c632footer_city .z5c632city_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
}

.z5c632footer_city a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.88rem;
}

.z5c632footer_city a:hover {
    color: #00c73c;
}

.z5c632footer_extra {
    color: #aaa;
    font-size: 0.85rem;
}

/* 子导航下拉（getsonclass 输出） */
.z5c632nav_item dl,
.z5c632nav_item .z5c632nav-child {
    margin: 0.35rem 0 0 0.5rem;
    padding: 0;
}

.z5c632nav_item dd {
    margin: 0.15rem 0;
}

.z5c632nav_item dd a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1199px) {
    .z5c632home_articles_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .z5c632inner_layout {
        grid-template-columns: 1fr;
    }

    .z5c632sidebar {
        order: 2;
    }

    .z5c632article_column,
    .z5c632list_column {
        order: 1;
    }

    .z5c632home_articles_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .z5c632list_card {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .z5c632prenext,
    .z5c632prenext_single {
        flex-direction: column;
        align-items: stretch;
    }

    .z5c632prenext_next {
        text-align: left;
    }

    .z5c632related_item {
        grid-template-columns: 100px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .z5c632home_articles_grid {
        grid-template-columns: 1fr;
    }

    .z5c632nav_item dl,
    .z5c632nav_item .z5c632nav-child {
        margin-left: 0;
    }

    .z5c632list_card {
        grid-template-columns: 1fr;
    }

    .z5c632list_thumb {
        max-width: 100%;
    }

    .z5c632pagebar_split {
        flex-direction: column;
    }

    .z5c632pagebar_side_right {
        text-align: left;
    }

    .z5c632pagebar_side_right .pagelist {
        justify-content: flex-start;
    }

    .z5c632article_h1,
    .z5c632list_h1 {
        font-size: 1.45rem;
    }
}

@media (prefers-color-scheme: dark) {
    .z5c632faq {
        background: #1a1a1a !important;
    }

    .z5c632faq_item,
    .z5c632home_article_card,
    .z5c632list_card,
    .z5c632side_block {
        background: #2d2d2d !important;
        border-color: #374151 !important;
        color: #d1d5db !important;
    }

    .z5c632home_articles {
        background: #111 !important;
    }

    .z5c632faq_question h4,
    .z5c632home_article_title,
    .z5c632article_h1,
    .z5c632list_h1,
    .z5c632list_title,
    .z5c632side_title a,
    .z5c632side_link,
    .z5c632related_link {
        color: #f3f4f6 !important;
    }

    .z5c632home_article_desc,
    .z5c632faq_answer,
    .z5c632list_intro,
    .z5c632typography {
        color: #9ca3af !important;
    }

    .z5c632pages .pagelist a {
        background: #1f2937 !important;
        border-color: #374151 !important;
        color: #e5e7eb !important;
    }
} 