/* style of all pages */ 
/* style include mt4.html,mt5.html,tradingview.html,mt4-robot.html,mt5-robot.html*/

   :root {
            --primary: #00E5A0;
            --primary-dark: #00B37D;
            --secondary: #0066FF;
            --dark: #0A0E27;
            --text: #FFFFFF;
            --text-muted: #8B93B8;
            --font-display: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --spacing-xl: 6rem;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: var(--font-body);
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
        }
        
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, rgba(0, 229, 160, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(0, 229, 160, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
        }
        
        /* ========================================
           HEADER & NAVIGATION
           ======================================== */
    html[dir="rtl"] body { direction: rtl; text-align: right; }
     html[dir="rtl"] header, html[dir="rtl"] nav, html[dir="rtl"] .lang-switcher { direction: ltr; text-align: left; }
      html[dir="rtl"] .nav-links { direction: rtl; } html[dir="rtl"] .hero-product, 
      html[dir="rtl"] .section-title, html[dir="rtl"] .screenshot-section, html[dir="rtl"] .price-box { text-align: center; } html[dir="rtl"] .fa-arrow-right { transform: rotate(180deg); }
     
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 229, 160, 0.1);
        }
        
        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover { color: var(--primary); }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Language switcher */
        .lang-switcher {
            position: relative;
            display: inline-block;
            direction: ltr;
            flex-shrink: 0;
        }

        .lang-current {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 229, 160, 0.2);
            border-radius: 50px;
            color: var(--text);
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .lang-current:hover {
            border-color: var(--primary);
            background: rgba(0, 229, 160, 0.05);
        }

        .lang-current .flag,
        .lang-option .flag {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .lang-current .chevron {
            font-size: 0.7rem;
            transition: transform 0.3s;
            color: var(--text-muted);
        }

        .lang-switcher.open .lang-current .chevron {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            min-width: 205px;
            background: rgba(10, 14, 39, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 229, 160, 0.2);
            border-radius: 14px;
            padding: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s ease;
            z-index: 1200;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
        }

        .lang-switcher.open .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.7rem 0.8rem;
            border-radius: 10px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.92rem;
            transition: all 0.2s ease;
        }

        .lang-option:hover,
        .lang-option.active {
            background: rgba(0, 229, 160, 0.08);
            color: var(--primary);
        }

        .lang-option .check {
            margin-left: auto;
            opacity: 0;
            color: var(--primary);
            font-size: 0.8rem;
        }

        .lang-option.active .check {
            opacity: 1;
        }

        html[dir="rtl"] header,
        html[dir="rtl"] nav,
        html[dir="rtl"] .lang-switcher {
            direction: ltr;
            text-align: left;
        }

        html[dir="rtl"] .nav-links,
        html[dir="rtl"] .hero-product,
        html[dir="rtl"] .section,
        html[dir="rtl"] footer {
            direction: rtl;
            text-align: right;
        }

        html[dir="rtl"] .hero-product,
        html[dir="rtl"] .section-title,
        html[dir="rtl"] .screenshot-section,
        html[dir="rtl"] .price-box {
            text-align: center;
        }
        
        .cta-btn {
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 229, 160, 0.3);
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            position: relative;
        }
        
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* ========================================
           HERO SECTION
           ======================================== */
        
        .hero-product {
            position: relative;
            z-index: 2;
            padding: 10rem 2rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }
        
        .product-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(0, 229, 160, 0.1);
            border: 1px solid rgba(0, 229, 160, 0.3);
            border-radius: 50px;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }
        
        .hero-product h1 {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle {
            font-size: 1.5rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .price-box {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--primary);
            border-radius: 24px;
            padding: 2rem 3rem;
            display: inline-block;
            margin-bottom: 3rem;
        }
        
        .price {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary);
        }
        
        .price span {
            font-size: 1.5rem;
            color: var(--text-muted);
            font-weight: 400;
        }
        
        .price-features {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 1rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        
        .btn-buy {
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-block;
            transition: all 0.3s;
            margin-top: 2.5rem;
        }        
        
        .btn-buy:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 229, 160, 0.4);
        }
        
        /* ========================================
           SECTIONS
           ======================================== */
        
        .section {
            position: relative;
            z-index: 2;
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(0, 229, 160, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        .specs-table {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(0, 229, 160, 0.1);
            border-radius: 20px;
            overflow: hidden;
            margin: 3rem 0;
        }
        
        .spec-row {
            display: grid;
            grid-template-columns: 1fr 2fr;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(0, 229, 160, 0.1);
        }
        
        .spec-row:last-child { border-bottom: none; }
        .spec-row:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
        
        .spec-label {
            font-weight: 700;
            color: var(--primary);
        }
        
        .spec-value {
            color: var(--text-muted);
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(0, 229, 160, 0.1);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .faq-question {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .faq-answer {
            color: var(--text-muted);
            line-height: 1.8;
        }

        .screenshot-section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(0, 229, 160, 0.1);
            border-radius: 24px;
            padding: 3rem;
            margin: 4rem 0;
        }
        
        .screenshot-placeholder {
            width: 100%;
            height: auto !important;
            background: linear-gradient(135deg, rgba(0, 229, 160, 0.1), rgba(0, 102, 255, 0.1));
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.2rem;
            border: 2px dashed rgba(0, 229, 160, 0.3);
            text-align: center;
            padding: 2rem;
            overflow: hidden;
        }

        .screenshot-placeholder img {
            width: 100%;
            height: auto;
            display: block;
        }

        .screenshot-placeholder iframe {
            width: 100%;
            max-width: 800px;
            height: 450px;
            border-radius: 12px;
        }

        /* ========================================
           FOOTER
           ======================================== */

        footer {
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(0, 229, 160, 0.1);
            padding: 3rem 2rem 2rem;
            margin-top: var(--spacing-xl);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            margin: 1rem 0;
            line-height: 1.7;
        }

        .footer-links h4 {
            margin-bottom: 1.5rem;
            font-family: var(--font-display);
        }

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

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 229, 160, 0.1);
            text-align: center;
            color: var(--text-muted);
        }
        
        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */
        
        /* Tablets (1024px and below) */
        @media (max-width: 1024px) {
            .features-grid { 
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-product h1 { 
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .spec-row { 
                grid-template-columns: 1fr; 
                gap: 0.5rem;
                padding: 1.2rem 1.5rem;
            }
        }
        
        /* Mobile and Small Tablets (768px and below) */
        @media (max-width: 768px) {
            /* Mobile Menu */
            .mobile-menu-toggle {
                display: flex !important;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                max-width: 80%;
                height: 100vh;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                gap: 0;
                border-left: 1px solid rgba(0, 229, 160, 0.2);
                transition: right 0.4s ease;
                z-index: 999;
                overflow-y: auto;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
            }
            
            .nav-links.active {
                right: 0 !important;
            }
            
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(0, 229, 160, 0.1);
            }
            
            .nav-links a {
                display: block;
                padding: 1.2rem 0;
                font-size: 1.1rem;
                color: var(--text) !important;
                transition: all 0.3s;
            }
            
            .nav-links a:hover {
                color: var(--primary) !important;
                padding-left: 10px;
            }
            
            body.menu-open::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                z-index: 998;
                animation: fadeIn 0.3s ease;
            }
            
            body.menu-open {
                overflow: hidden;
            }
            
            /* Navigation */
            nav {
                padding: 1.2rem 1.5rem;
            }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .logo-icon {
                width: 30px;
                height: 30px;
            }
            
            .cta-btn {
                padding: 0.65rem 1.5rem;
                font-size: 0.9rem;
            }
            
            /* Hero Section */
            .hero-product {
                padding: 7rem 1.5rem 3rem;
            }
            
            .hero-product h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .price-box {
                padding: 1.5rem 2rem;
            }
            
            .price {
                font-size: 3rem;
            }
            
            .price-features {
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .btn-buy {
                padding: 1rem 2rem;
                font-size: 1rem;
                width: 100%;
            }
            
            /* Features Grid */
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 3rem 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            /* Screenshot Section */
            .screenshot-section {
                padding: 2rem 1.5rem;
            }
            
            .screenshot-placeholder {
                padding: 1.5rem;
                font-size: 1rem;
            }
            
            .screenshot-placeholder iframe {
                height: 300px;
            }
            
            /* FAQ */
            .faq-item {
                padding: 1.5rem;
            }
            
            .faq-question {
                font-size: 1.2rem;
            }
            
            /* Footer */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }
            
            .footer-brand {
                margin-bottom: 1rem;
            }
            
            .footer-brand .logo {
                justify-content: center;
            }
            
            .footer-links {
                padding: 1.5rem 0;
                border-top: 1px solid rgba(0, 229, 160, 0.1);
            }
            
            .footer-links h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
            }
            
            .footer-links ul {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .footer-links a {
                padding: 0.5rem 0;
                font-size: 0.95rem;
            }
            
            footer {
                padding: 2rem 1rem 1.5rem;
            }
            
            .footer-bottom {
                margin-top: 2rem;
                padding-top: 1.5rem;
                font-size: 0.85rem;
            }
        }
        
        /* Mobile Portrait (576px and below) */
        @media (max-width: 576px) {
            nav .cta-btn {
                display: none;
            }
            
            .hero-product {
                padding: 6rem 1rem 2rem;
            }
            
            .hero-product h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.05rem;
            }
            
            .product-badge {
                font-size: 0.8rem;
                padding: 0.4rem 1.2rem;
            }
            
            .price {
                font-size: 2.5rem;
            }
            
            .price span {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .feature-card h3 {
                font-size: 1.3rem;
            }
            
            .screenshot-section {
                padding: 1.5rem 1rem;
            }
            
            .screenshot-section h3 {
                font-size: 1.5rem;
            }
            
            .screenshot-placeholder iframe {
                height: 250px;
            }
            
            .spec-row {
                padding: 1rem;
            }
            
            .faq-question {
                font-size: 1.1rem;
            }
            
            .footer-bottom p {
                font-size: 0.8rem;
                line-height: 1.5;
            }
        }
        
        /* Very Small Devices (400px and below) */
        @media (max-width: 400px) {
            .hero-product h1 {
                font-size: 1.75rem;
            }
            
            .price-box {
                padding: 1.2rem 1.5rem;
            }
            
            .section {
                padding: 2rem 1rem;
            }
            
            .screenshot-section {
                padding: 1.2rem 0.8rem;
            }
            
            .screenshot-placeholder iframe {
                height: 220px;
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
