/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0e1a;
    overflow-x: hidden;
}

.zf0fb6container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header navigation styles */
.zf0fb6header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zf0fb6nav {
    padding: 1rem 0;
}

.zf0fb6nav .zf0fb6container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zf0fb6logo {
    display: flex;
    align-items: center;
}

.zf0fb6logo_link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zf0fb6logo_link:hover {
    transform: scale(1.05);
}

.zf0fb6logo_image {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    border-radius: 10px;
}



.zf0fb6nav_menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.zf0fb6nav_menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.zf0fb6nav_menu a:hover {
    color: #f7931a;
    background: rgba(247, 147, 26, 0.1);
}

.zf0fb6mobile_menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.zf0fb6mobile_menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero section styles */
.zf0fb6hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #2d3748 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.zf0fb6hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.zf0fb6hero_particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(247, 147, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.zf0fb6hero .zf0fb6container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.zf0fb6hero_badge {
    display: inline-block;
    background: linear-gradient(135deg, #f7931a, #ffd700);
    color: #0a0e1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}



.zf0fb6hero_title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.zf0fb6hero_title_main {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.zf0fb6hero_title_sub {
    color: white;
    display: block;
    font-size: 0.8em;
    opacity: 0.9;
}

.zf0fb6hero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #cbd5e0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: left;
}

.zf0fb6hero_stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.zf0fb6hero_stats .zf0fb6stat {
    text-align: center;
}

.zf0fb6hero_stats .zf0fb6stat_number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f7931a;
}

.zf0fb6hero_stats .zf0fb6stat_label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.zf0fb6download_buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zf0fb6btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.zf0fb6btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.zf0fb6btn:hover::before {
    left: 100%;
}

.zf0fb6btn_primary {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    color: #0a0e1a;
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.3);
}

.zf0fb6btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(247, 147, 26, 0.4);
}

.zf0fb6btn_secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.zf0fb6btn_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f7931a;
    transform: translateY(-3px);
}

.zf0fb6btn_icon {
    font-size: 1.2rem;
}

/* Phone mockup styles */
.zf0fb6phone_mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6phone_frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.zf0fb6phone_frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.zf0fb6phone_screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.zf0fb6phone_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zf0fb6placeholder_image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.zf0fb6placeholder_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
}

.zf0fb6placeholder_text {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    z-index: 1;
    position: relative;
}









/* Download section styles */
.zf0fb6download_section {
    padding: 100px 0;
    background: #1a1f2e;
    position: relative;
}

.zf0fb6section_header {
    text-align: center;
    margin-bottom: 4rem;
}

.zf0fb6section_title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    background: linear-gradient(135deg, #f7931a, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zf0fb6section_subtitle {
    font-size: 1.2rem;
    color: #cbd5e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Platform selector */
.zf0fb6platform_selector {
    margin-bottom: 3rem;
}

.zf0fb6platform_tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zf0fb6platform_tab {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    color: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.zf0fb6platform_tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.zf0fb6platform_tab.zf0fb6tab_active {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    color: #0a0e1a;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

/* Download content area */
.zf0fb6download_content {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.zf0fb6download_content.zf0fb6content_active {
    display: block;
}



/* Visual display area */
.zf0fb6download_hero_visual {
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Download options */
.zf0fb6download_options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zf0fb6download_option {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zf0fb6download_option:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zf0fb6option_header {
    margin-bottom: 1.5rem;
}

.zf0fb6option_info h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.zf0fb6option_info p {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.zf0fb6option_details {
    margin-bottom: 1.5rem;
}

.zf0fb6option_detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zf0fb6option_detail:last-child {
    border-bottom: none;
}

.zf0fb6detail_label {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.zf0fb6detail_value {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.zf0fb6download_btn {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.zf0fb6download_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.zf0fb6download_btn:hover::before {
    left: 100%;
}

.zf0fb6btn_android {
    background: linear-gradient(135deg, #3ddc84, #2ecc71);
}

.zf0fb6btn_ios {
    background: linear-gradient(135deg, #007aff, #0056b3);
}

.zf0fb6btn_windows {
    background: linear-gradient(135deg, #0078d4, #005a9e);
}

.zf0fb6btn_mac {
    background: linear-gradient(135deg, #000, #333);
}

.zf0fb6btn_web {
    background: linear-gradient(135deg, #4285f4, #3367d6);
}

.zf0fb6download_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Version info styles */
.zf0fb6version_info {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zf0fb6version_info h3 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.zf0fb6version_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.zf0fb6version_item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.zf0fb6version_platform {
    font-weight: bold;
    color: #f7931a;
    margin-bottom: 0.5rem;
}

.zf0fb6version_number {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.zf0fb6version_date {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.zf0fb6version_size {
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Features styles */
.zf0fb6features_section {
    padding: 100px 0;
    background: #0a0e1a;
}

.zf0fb6features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zf0fb6feature_item {
    background: linear-gradient(145deg, #1a1f2e, #2d3748);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.zf0fb6feature_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zf0fb6feature_item:hover::before {
    opacity: 1;
}

.zf0fb6feature_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zf0fb6feature_icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6icon_img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.zf0fb6feature_item:hover .zf0fb6icon_img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2);
}

.zf0fb6feature_item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.zf0fb6feature_item p {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.zf0fb6feature_highlight {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    color: #0a0e1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Trading features styles */
.zf0fb6trading_section {
    padding: 100px 0;
    background: #1a1f2e;
}

.zf0fb6trading_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.zf0fb6trading_item {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zf0fb6trading_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zf0fb6trading_icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6trading_item:hover .zf0fb6icon_img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2);
}

.zf0fb6trading_item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.zf0fb6trading_item p {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.zf0fb6trading_list {
    list-style: none;
    text-align: left;
}

.zf0fb6trading_list li {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.zf0fb6trading_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f7931a;
    font-weight: bold;
}

/* Testimonials styles */
.zf0fb6testimonials_section {
    padding: 100px 0;
    background: #0a0e1a;
}

.zf0fb6testimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zf0fb6testimonial_item {
    background: linear-gradient(145deg, #1a1f2e, #2d3748);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zf0fb6testimonial_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zf0fb6testimonial_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.zf0fb6testimonial_avatar {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6testimonial_avatar .zf0fb6icon_img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.zf0fb6testimonial_item:hover .zf0fb6testimonial_avatar .zf0fb6icon_img {
    transform: scale(1.1);
}

.zf0fb6testimonial_author {
    flex: 1;
}

.zf0fb6testimonial_author strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.zf0fb6testimonial_author span {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.zf0fb6testimonial_content p {
    color: #cbd5e0;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Security section styles */
.zf0fb6security_section {
    padding: 100px 0;
    background: #1a1f2e;
}

.zf0fb6security_header {
    text-align: center;
    margin-bottom: 4rem;
}

.zf0fb6security_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zf0fb6security_item {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zf0fb6security_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zf0fb6security_icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6security_item:hover .zf0fb6icon_img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2);
}

.zf0fb6security_item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.zf0fb6security_item p {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.zf0fb6security_progress {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.zf0fb6progress_bar {
    height: 100%;
    background: linear-gradient(135deg, #f7931a, #ffd700);
    border-radius: 4px;
    transition: width 2s ease;
}

/* Security certification styles */
.zf0fb6security_certifications {
    margin-top: 4rem;
}

.zf0fb6security_certifications h3 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.zf0fb6certifications_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.zf0fb6certification_item {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zf0fb6certification_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.zf0fb6certification_icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6certification_icon .zf0fb6icon_img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.zf0fb6certification_item:hover .zf0fb6certification_icon .zf0fb6icon_img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2);
}

.zf0fb6certification_item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.zf0fb6certification_item p {
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* News section styles */
.zf0fb6news_section {
    padding: 100px 0;
    background: #1a1f2e;
}

.zf0fb6news_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.zf0fb6news_item {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.zf0fb6news_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(247, 147, 26, 0.3);
}

.zf0fb6news_featured {
    border-left: 4px solid #f7931a;
    background: linear-gradient(145deg, #2d3748, #1a202c);
}

.zf0fb6news_content {
    padding: 1.5rem;
}

.zf0fb6news_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.zf0fb6news_category {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    color: #0a0e1a;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.zf0fb6news_date {
    color: #cbd5e0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.zf0fb6news_item h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.zf0fb6news_item p {
    color: #cbd5e0;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.zf0fb6news_read {
    color: #f7931a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
}

.zf0fb6news_read:hover {
    color: #ffd700;
    transform: translateX(5px);
}

/* News responsive design */
@media (max-width: 768px) {
    .zf0fb6news_list {
        max-width: 100%;
        gap: 1rem;
    }
    
    .zf0fb6news_content {
        padding: 1.25rem;
    }
    
    .zf0fb6news_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .zf0fb6news_item h3 {
        font-size: 1.1rem;
    }
    
    .zf0fb6news_item p {
        font-size: 0.9rem;
    }
}

/* Tutorial guide styles */
.zf0fb6tutorial_section {
    padding: 100px 0;
    background: #0a0e1a;
}

.zf0fb6tutorial_steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.zf0fb6tutorial_step {
    background: linear-gradient(145deg, #1a1f2e, #2d3748);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.zf0fb6tutorial_step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zf0fb6step_number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f7931a, #ffd700);
    color: #0a0e1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.zf0fb6step_content {
    margin-top: 1rem;
}

.zf0fb6step_content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.zf0fb6step_content p {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.zf0fb6step_tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.zf0fb6step_tips span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #cbd5e0;
}

/* FAQ styles */
.zf0fb6faq_section {
    margin-top: 4rem;
}

.zf0fb6faq_section h3 {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.zf0fb6faq_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.zf0fb6faq_item {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zf0fb6faq_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.zf0fb6faq_item h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.zf0fb6faq_item p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Statistics styles */
.zf0fb6stats_section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.zf0fb6stats_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 147, 26, 0.1) 0%, transparent 70%);
}

.zf0fb6stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.zf0fb6stat_item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zf0fb6stat_item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.zf0fb6stat_icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6stat_icon .zf0fb6icon_img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.zf0fb6stat_item:hover .zf0fb6stat_icon .zf0fb6icon_img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2);
}

.zf0fb6stat_number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f7931a, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zf0fb6stat_label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact section styles */
.zf0fb6contact_section {
    padding: 100px 0;
    background: #0a0e1a;
}

.zf0fb6contact_info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zf0fb6contact_item {
    background: linear-gradient(145deg, #1a1f2e, #2d3748);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.zf0fb6contact_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.zf0fb6contact_icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zf0fb6contact_icon .zf0fb6icon_img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.zf0fb6contact_item:hover .zf0fb6contact_icon .zf0fb6icon_img {
    transform: scale(1.1);
    filter: brightness(1.2) saturate(1.2);
}

.zf0fb6contact_item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.zf0fb6contact_item p {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.zf0fb6contact_badge {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    color: #0a0e1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
}

/* Footer styles */
.zf0fb6footer {
    background: #0a0e1a;
    color: white;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zf0fb6footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.zf0fb6footer_section h3 {
    margin-bottom: 1.5rem;
    color: #f7931a;
    font-size: 1.3rem;
}

.zf0fb6footer_logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.zf0fb6footer_logo .zf0fb6logo_image {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.zf0fb6footer_section p {
    color: #cbd5e0;
    line-height: 1.8;
}

.zf0fb6footer_section ul {
    list-style: none;
}

.zf0fb6footer_section ul li {
    margin-bottom: 0.8rem;
}

.zf0fb6footer_section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zf0fb6footer_section a:hover {
    color: #f7931a;
}

.zf0fb6footer_bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
}

/* Responsive design */
@media (max-width: 768px) {
    .zf0fb6nav_menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .zf0fb6nav_menu.active {
        display: flex;
    }

    .zf0fb6mobile_menu {
        display: flex;
    }

    .zf0fb6logo_image {
        max-width: 96px;
        max-height: 48px;
    }

    .zf0fb6logo_link:hover {
        transform: scale(1.02);
    }

    .zf0fb6footer_logo .zf0fb6logo_image {
        max-width: 80px;
        max-height: 40px;
    }

    .zf0fb6hero .zf0fb6container {
        grid-template-columns: 1fr;
        text-align: center;
    }



    .zf0fb6hero_title {
        font-size: 2.5rem;
    }

    .zf0fb6hero_subtitle {
        font-size: 1rem;
        max-width: 650px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }

    .zf0fb6download_buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .zf0fb6btn {
        padding: 15px 28px;
        font-size: 0.98rem;
    }

    .zf0fb6section_title {
        font-size: 2.5rem;
    }

    .zf0fb6phone_frame {
        width: 240px;
        height: 480px;
    }

    .zf0fb6download_cards {
        grid-template-columns: 1fr;
    }

    .zf0fb6features_grid {
        grid-template-columns: 1fr;
    }

    .zf0fb6testimonials_grid {
        grid-template-columns: 1fr;
    }

    .zf0fb6testimonial_header {
        gap: 0.8rem;
    }

    .zf0fb6testimonial_avatar .zf0fb6icon_img {
        width: 40px;
        height: 40px;
    }

    .zf0fb6security_features {
        grid-template-columns: 1fr;
    }

    .zf0fb6stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zf0fb6contact_info {
        grid-template-columns: 1fr;
    }

    .zf0fb6footer_content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zf0fb6hero_stats {
        justify-content: center;
    }

    .zf0fb6news_featured {
        grid-column: span 1;
    }

    .zf0fb6tutorial_steps {
        grid-template-columns: 1fr;
    }

    .zf0fb6version_grid {
        grid-template-columns: 1fr;
    }

    .zf0fb6certifications_grid {
        grid-template-columns: 1fr;
    }

    .zf0fb6faq_grid {
        grid-template-columns: 1fr;
    }

    /* Download area responsive */
    .zf0fb6platform_tabs {
        flex-direction: column;
        gap: 0.3rem;
    }

    .zf0fb6platform_tab {
        padding: 0.6rem 1rem;
    }



    .zf0fb6download_options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zf0fb6container {
        padding: 0 15px;
    }

    .zf0fb6hero {
        padding: 100px 0 60px;
    }



    .zf0fb6hero_title {
        font-size: 1.8rem;
    }

    .zf0fb6hero_subtitle {
        font-size: 0.95rem;
        max-width: 550px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
        text-align: left;
    }

    .zf0fb6download_buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .zf0fb6btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .zf0fb6stats_grid {
        grid-template-columns: 1fr;
    }

    .zf0fb6phone_frame {
        width: 200px;
        height: 400px;
    }

    .zf0fb6hero_stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .zf0fb6hero_stats .zf0fb6stat {
        flex: 1;
        min-width: 80px;
    }

    .zf0fb6footer_content {
        text-align: left;
    }

    .zf0fb6logo_image {
        max-width: 80px;
        max-height: 40px;
    }

    .zf0fb6logo_link:hover {
        transform: scale(1.01);
    }

    .zf0fb6footer_logo .zf0fb6logo_image {
        max-width: 64px;
        max-height: 32px;
    }

    /* Download area small screen responsive */
    .zf0fb6platform_tabs {
        padding: 0.2rem;
    }

    .zf0fb6platform_tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }



    .zf0fb6download_option {
        padding: 1.5rem;
    }

    .zf0fb6option_detail {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zf0fb6download_card.animate,
.zf0fb6feature_item.animate,
.zf0fb6security_item.animate,
.zf0fb6contact_item.animate {
    animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1f2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f7931a, #ffd700);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd700, #f7931a);
}

/* Focus styles */
.zf0fb6btn:focus,
.zf0fb6download_btn:focus,
.zf0fb6nav_menu a:focus,
.zf0fb6logo_link:focus {
    outline: 2px solid #f7931a;
    outline-offset: 2px;
}

/* Loading animation */
.zf0fb6loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(247, 147, 26, 0.3);
    border-top: 3px solid #f7931a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Social media sharing styles */
.zf0fb6social_buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.zf0fb6social_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
}

.zf0fb6social_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.zf0fb6social_icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zf0fb6social_btn:hover .zf0fb6social_icon {
    transform: scale(1.1);
}

/* Social media specific colors */
.zf0fb6wechat:hover {
    background: linear-gradient(145deg, #07c160, #06ad56);
    border-color: #07c160;
}

.zf0fb6weibo:hover {
    background: linear-gradient(145deg, #e6162d, #c41230);
    border-color: #e6162d;
}

.zf0fb6qq:hover {
    background: linear-gradient(145deg, #12b7f5, #0ea5e0);
    border-color: #12b7f5;
}

/* Responsive social media buttons */
@media (max-width: 768px) {
    .zf0fb6social_buttons {
        gap: 0.6rem;
        justify-content: flex-start;
    }
    
    .zf0fb6social_btn {
        padding: 0.6rem;
        width: 42px;
        height: 42px;
    }
    
    .zf0fb6social_icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .zf0fb6social_buttons {
        gap: 0.4rem;
        justify-content: flex-start;
    }
    
    .zf0fb6social_btn {
        padding: 0.5rem;
        width: 38px;
        height: 38px;
    }
    
    .zf0fb6social_icon {
        width: 18px;
        height: 18px;
    }
} 