 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto+Mono:wght@400;500;600&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #10b981;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --dark: #0f172a;
            --light: #ffffff;
            --gray: #f8fafc;
            --text: #1e293b;
            --border: #e2e8f0;
        }
        
        body {
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        /* Background Images */
        .hero-bg {
            background: 
                linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .markets-bg {
            background: 
                linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .platform-bg {
            background: 
                linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.98)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .accounts-bg {
            background: 
                linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .cta-bg {
            background: 
                linear-gradient(rgba(37, 99, 235, 0.9), rgba(16, 185, 129, 0.9)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .footer-bg {
            background: 
                linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
        }
        
        /* Image Banners */
        .image-banner {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .image-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .image-banner:hover img {
            transform: scale(1.05);
        }
        
        .image-banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(15, 23, 42, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            color: white;
        }
        
        /* Trading-specific styles */
        .trading-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .trading-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .trading-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .profit {
            color: var(--success);
        }
        
        .loss {
            color: var(--danger);
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Glass effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }
        
        /* Chart container */
        #tradingview-chart {
            height: 400px;
            width: 100%;
        }
        
        /* Mobile optimization */
        @media (max-width: 768px) {
            #tradingview-chart {
                height: 300px;
            }
            
            .hero-bg,
            .cta-bg {
                background-attachment: scroll;
            }
        }
        
        /* Market image cards */
        .market-image-card {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .market-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .market-image-card:hover img {
            transform: scale(1.1);
        }
        
        .market-image-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
            color: white;
            padding: 1.5rem;
        }
        
        /* Stats banner */
        .stats-banner {
            background: 
                linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        /* Platform showcase */
        .platform-showcase {
            background: 
                linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
        }
        
        /* Testimonial bg */
        .testimonial-bg {
            background: 
                linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)),
                url('../images/img-7.jpg');
            background-size: cover;
            background-position: center;
        }