* {
    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, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.header_9x2k4 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav_7m3n5 {
    padding: 1rem 0;
}

.nav_container_4p8q6 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_6r9s2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo_img_3t5u7 {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo_text_8v2w4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a5568;
}

.nav_menu_1x6y8 {
    display: flex;
    gap: 2rem;
}

.nav_link_5z7a9, .nav_link_2b4c6, .nav_link_8d1e3, .nav_link_7f9g2 {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav_link_5z7a9:hover, .nav_link_2b4c6:hover, .nav_link_8d1e3:hover, .nav_link_7f9g2:hover {
    color: #667eea;
}

.nav_link_5z7a9::after, .nav_link_2b4c6::after, .nav_link_8d1e3::after, .nav_link_7f9g2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav_link_5z7a9:hover::after, .nav_link_2b4c6:hover::after, .nav_link_8d1e3:hover::after, .nav_link_7f9g2:hover::after {
    width: 100%;
}

.mobile_menu_btn_4h6i8 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile_menu_btn_4h6i8 span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    transition: 0.3s;
}

.main_content_9j2k4 {
    margin-top: 80px;
    padding: 2rem 0;
}

.content_wrapper_6l8m9 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.main_article_3n5o7 {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.game_header_7p9q2 {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.game_title_section_1r3s5 {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.game_icon_4t6u8 {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.title_content_9v1w3 {
    flex: 1;
}

.game_title_2x4y6 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.version_tag_5z7a8 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.game_tags_8b2c4 {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag_6d4e6, .tag_7f8g9, .tag_1h3i5, .tag_4j6k7 {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.game_description_8l2m4 {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.7;
}

.download_section_3n5o7 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    min-width: 280px;
}

.download_title_1r3s5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.download_link_container_4t6u8 {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.download_link_9v1w3 {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    font-size: 0.875rem;
    cursor: text;
}

.copy_btn_2x4y6 {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.copy_btn_2x4y6:hover {
    background: rgba(255, 255, 255, 0.3);
}

.download_note_5z7a8 {
    font-size: 0.875rem;
    opacity: 0.9;
    text-align: center;
}

.section_title_6d4e6, .section_title_8l2m4, .section_title_2x4y6 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.intro_content_7f8g9, .story_content_5z7a8 {
    color: #4a5568;
    line-height: 1.8;
}

.intro_content_7f8g9 p, .story_content_5z7a8 p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.intro_image_1h3i5, .story_image_8b2c4 {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
}

.features_grid_3n5o7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature_card_7p9q2, .feature_card_2x4y6, .feature_card_7f8g9, .feature_card_3n5o7 {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature_card_7p9q2:hover, .feature_card_2x4y6:hover, .feature_card_7f8g9:hover, .feature_card_3n5o7:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature_icon_1r3s5, .feature_icon_5z7a8, .feature_icon_1h3i5, .feature_icon_7p9q2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature_title_4t6u8, .feature_title_8b2c4, .feature_title_4j6k7, .feature_title_1r3s5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.feature_desc_9v1w3, .feature_desc_6d4e6, .feature_desc_8l2m4, .feature_desc_4t6u8 {
    color: #718096;
    line-height: 1.6;
}

.sidebar_6d4e6 {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar_content_7f8g9 {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.sidebar_section_1h3i5, .sidebar_section_9v1w3 {
    margin-bottom: 2rem;
}

.sidebar_section_1h3i5:last-child, .sidebar_section_9v1w3:last-child {
    margin-bottom: 0;
}

.sidebar_title_4j6k7, .sidebar_title_2x4y6 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.sidebar_nav_8l2m4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar_link_3n5o7, .sidebar_link_7p9q2, .sidebar_link_1r3s5, .sidebar_link_4t6u8 {
    text-decoration: none;
    color: #4a5568;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar_link_3n5o7:hover, .sidebar_link_7p9q2:hover, .sidebar_link_1r3s5:hover, .sidebar_link_4t6u8:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.game_info_5z7a8 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info_item_8b2c4, .info_item_1h3i5, .info_item_3n5o7, .info_item_4t6u8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.info_item_8b2c4:last-child, .info_item_1h3i5:last-child, .info_item_3n5o7:last-child, .info_item_4t6u8:last-child {
    border-bottom: none;
}

.info_label_6d4e6, .info_label_4j6k7, .info_label_7p9q2, .info_label_9v1w3 {
    color: #718096;
    font-weight: 500;
}

.info_value_7f8g9, .info_value_8l2m4, .info_value_1r3s5, .info_value_2x4y6 {
    color: #2d3748;
    font-weight: 600;
}

.footer_5z7a8 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer_content_8b2c4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright_6d4e6 {
    color: #718096;
    font-size: 0.875rem;
}

.page_header_7p9q2 {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.page_title_1r3s5 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.page_description_4t6u8 {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.guide_category_5z7a8, .guide_category_6d4e6, .guide_category_1h3i5, .guide_category_8l2m4 {
    margin-bottom: 3rem;
}

.category_title_8b2c4, .category_title_7f8g9, .category_title_4j6k7, .category_title_3n5o7 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
    display: inline-block;
}

.guide_items_6d4e6, .guide_items_1h3i5, .guide_items_8l2m4, .guide_items_7p9q2 {
    display: grid;
    gap: 1.5rem;
}

.guide_item_7f8g9, .guide_item_1r3s5, .guide_item_4j6k7, .guide_item_9v1w3, .guide_item_3n5o7, .guide_item_5z7a8, .guide_item_1r3s5, .guide_item_6d4e6 {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide_item_7f8g9:hover, .guide_item_1r3s5:hover, .guide_item_4j6k7:hover, .guide_item_9v1w3:hover, .guide_item_3n5o7:hover, .guide_item_5z7a8:hover, .guide_item_1r3s5:hover, .guide_item_6d4e6:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.guide_title_1h3i5, .guide_title_4t6u8, .guide_title_8l2m4, .guide_title_2x4y6, .guide_title_7p9q2, .guide_title_8b2c4, .guide_title_4t6u8, .guide_title_7f8g9 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.guide_summary_4j6k7, .guide_summary_9v1w3, .guide_summary_3n5o7, .guide_summary_5z7a8, .guide_summary_1r3s5, .guide_summary_6d4e6, .guide_summary_9v1w3, .guide_summary_1h3i5 {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide_meta_8l2m4, .guide_meta_2x4y6, .guide_meta_7p9q2, .guide_meta_8b2c4, .guide_meta_4t6u8, .guide_meta_7f8g9, .guide_meta_2x4y6, .guide_meta_4j6k7 {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #a0aec0;
}

.guide_date_3n5o7, .guide_date_5z7a8, .guide_date_1r3s5, .guide_date_6d4e6, .guide_date_9v1w3, .guide_date_1h3i5, .guide_date_5z7a8, .guide_date_8l2m4 {
    color: #667eea;
    font-weight: 500;
}

.guide_views_7p9q2, .guide_views_8b2c4, .guide_views_4t6u8, .guide_views_7f8g9, .guide_views_2x4y6, .guide_views_4j6k7, .guide_views_8b2c4, .guide_views_3n5o7 {
    color: #a0aec0;
}

.guide_tips_section_7p9q2 {
    margin-top: 3rem;
}

.tips_content_4t6u8 {
    display: grid;
    gap: 1.5rem;
}

.tip_item_9v1w3, .tip_item_5z7a8, .tip_item_6d4e6 {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

.tip_title_2x4y6, .tip_title_8b2c4, .tip_title_7f8g9 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.tip_item_9v1w3 p, .tip_item_5z7a8 p, .tip_item_6d4e6 p {
    color: #4a5568;
    line-height: 1.6;
}

.news_item_5z7a8, .news_item_6d4e6, .news_item_1h3i5, .news_item_4j6k7, .news_item_8l2m4 {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.news_header_8b2c4, .news_header_7f8g9, .news_header_4j6k7, .news_header_8l2m4, .news_header_3n5o7 {
    margin-bottom: 1.5rem;
}

.news_title_6d4e6, .news_title_1h3i5, .news_title_8l2m4, .news_title_3n5o7, .news_title_7p9q2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.news_meta_7f8g9, .news_meta_4j6k7, .news_meta_3n5o7, .news_meta_7p9q2, .news_meta_1r3s5 {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #a0aec0;
    flex-wrap: wrap;
}

.news_date_1h3i5, .news_date_8l2m4, .news_date_7p9q2, .news_date_1r3s5, .news_date_4t6u8 {
    color: #667eea;
    font-weight: 500;
}

.news_category_4j6k7, .news_category_3n5o7, .news_category_1r3s5, .news_category_4t6u8, .news_category_9v1w3 {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.news_views_8l2m4, .news_views_7p9q2, .news_views_4t6u8, .news_views_9v1w3, .news_views_2x4y6 {
    color: #a0aec0;
}

.news_content_3n5o7, .news_content_1r3s5, .news_content_9v1w3, .news_content_2x4y6, .news_content_5z7a8 {
    color: #4a5568;
    line-height: 1.8;
}

.news_content_3n5o7 p, .news_content_1r3s5 p, .news_content_9v1w3 p, .news_content_2x4y6 p, .news_content_5z7a8 p {
    margin-bottom: 1rem;
}

.news_content_3n5o7 ul, .news_content_1r3s5 ul, .news_content_9v1w3 ul, .news_content_2x4y6 ul, .news_content_5z7a8 ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.news_content_3n5o7 li, .news_content_1r3s5 li, .news_content_9v1w3 li, .news_content_2x4y6 li, .news_content_5z7a8 li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.news_archive_section_8b2c4 {
    margin-top: 3rem;
}

.archive_list_7f8g9 {
    display: grid;
    gap: 1rem;
}

.archive_item_1h3i5, .archive_item_3n5o7, .archive_item_4t6u8, .archive_item_5z7a8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.archive_item_1h3i5:hover, .archive_item_3n5o7:hover, .archive_item_4t6u8:hover, .archive_item_5z7a8:hover {
    background: rgba(255, 255, 255, 0.8);
}

.archive_title_4j6k7, .archive_title_7p9q2, .archive_title_9v1w3, .archive_title_8b2c4 {
    font-weight: 500;
    color: #2d3748;
}

.archive_date_8l2m4, .archive_date_1r3s5, .archive_date_2x4y6, .archive_date_6d4e6 {
    color: #a0aec0;
    font-size: 0.875rem;
}

.hot_guides_5z7a8, .hot_news_5z7a8 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hot_guide_item_8b2c4, .hot_guide_item_1h3i5, .hot_guide_item_3n5o7, .hot_news_item_8b2c4, .hot_news_item_1h3i5, .hot_news_item_3n5o7 {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hot_guide_item_8b2c4:hover, .hot_guide_item_1h3i5:hover, .hot_guide_item_3n5o7:hover, .hot_news_item_8b2c4:hover, .hot_news_item_1h3i5:hover, .hot_news_item_3n5o7:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hot_guide_title_6d4e6, .hot_guide_title_4j6k7, .hot_guide_title_7p9q2, .hot_news_title_6d4e6, .hot_news_title_4j6k7, .hot_news_title_7p9q2 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.hot_guide_views_7f8g9, .hot_guide_views_8l2m4, .hot_guide_views_1r3s5, .hot_news_views_7f8g9, .hot_news_views_8l2m4, .hot_news_views_1r3s5 {
    font-size: 0.75rem;
    color: #a0aec0;
}

.update_calendar_2x4y6 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calendar_item_5z7a8, .calendar_item_7f8g9, .calendar_item_8l2m4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.calendar_date_8b2c4, .calendar_date_1h3i5, .calendar_date_3n5o7 {
    font-weight: bold;
    color: #667eea;
    font-size: 0.875rem;
}

.calendar_event_6d4e6, .calendar_event_4j6k7, .calendar_event_7p9q2 {
    font-size: 0.875rem;
    color: #4a5568;
    text-align: right;
}

@media (max-width: 1024px) {
    .content_wrapper_6l8m9 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar_6d4e6 {
        position: static;
        order: -1;
    }
    
    .sidebar_content_7f8g9 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .nav_menu_1x6y8 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav_menu_1x6y8.active {
        display: flex;
    }
    
    .mobile_menu_btn_4h6i8 {
        display: flex;
    }
    
    .nav_container_4p8q6 {
        padding: 0 1rem;
    }
    
    .content_wrapper_6l8m9 {
        padding: 0 1rem;
    }
    
    .main_article_3n5o7 {
        padding: 1.5rem;
    }
    
    .game_header_7p9q2 {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .game_title_section_1r3s5 {
        flex-direction: column;
        text-align: center;
    }
    
    .game_title_2x4y6 {
        font-size: 2rem;
        justify-content: center;
    }
    
    .game_tags_8b2c4 {
        justify-content: center;
    }
    
    .download_section_3n5o7 {
        min-width: auto;
    }
    
    .features_grid_3n5o7 {
        grid-template-columns: 1fr;
    }
    
    .section_title_6d4e6, .section_title_8l2m4, .section_title_2x4y6 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .game_title_2x4y6 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .download_link_container_4t6u8 {
        flex-direction: column;
    }
    
    .copy_btn_2x4y6 {
        width: 100%;
    }
}

/* 友情链接样式 - 蜉蝣游戏主题 */
.friend-links-section-mfly {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
}

.friend-links-title-mfly {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.friend-links-title-mfly::before {
    content: '🎮';
    margin-right: 8px;
}

.friend-links-container-mfly {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.friend-link-mfly {
    display: inline-block;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.6);
    border-radius: 10px;
    color: #5a67d8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.friend-link-mfly::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.friend-link-mfly:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.friend-link-mfly:hover::after {
    left: 100%;
}
