* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0A0B14;
            color: #F0F2FF;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 94, 0, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 94, 0, 0.03) 0%, transparent 50%);
            z-index: -1;
            pointer-events: none;
        }
        
        .neon-text {
            text-shadow: 0 0 10px rgba(255, 94, 0, 0.7),
                         0 0 20px rgba(255, 94, 0, 0.5),
                         0 0 30px rgba(255, 94, 0, 0.3);
        }
        
        .neon-border {
            border: 1px solid rgba(255, 94, 0, 0.3);
            box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
        }
        
        .neon-border:hover {
            border-color: rgba(255, 94, 0, 0.6);
            box-shadow: 0 0 25px rgba(255, 94, 0, 0.4);
        }
        
        .glass-effect {
            background: rgba(18, 20, 34, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .glow-on-hover {
            transition: all 0.3s ease;
        }
        
        .glow-on-hover:hover {
            box-shadow: 0 0 25px rgba(255, 94, 0, 0.5);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #FF5E00, #FF8A00);
            border-radius: 3px;
        }
        
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #121422;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #FF5E00;
            border-radius: 3px;
        }
        
        .feature-card {
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.05), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .step-number {
            position: relative;
        }
        
        .step-number::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, rgba(255, 94, 0, 0.5), transparent);
        }
        
        .step-number:last-child::after {
            display: none;
        }
        
        @media (max-width: 768px) {
            .step-number::after {
                display: none;
            }
        }
        
        .testimonial-card {
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 80px;
            color: rgba(255, 94, 0, 0.1);
            font-family: serif;
            z-index: 0;
        }
        
        .faq-item {
            border-bottom: 1px solid #1E2130;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.1) 0%, rgba(10, 11, 20, 0.8) 50%, rgba(10, 11, 20, 1) 100%);
        }
        
        /* Responsive adjustments */
        @media (max-width: 640px) {
            .hero-heading {
                font-size: 2.5rem;
                line-height: 1.2;
            }
        }

        .timeline {
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #FF5E00, #FF8A00);
        }
        
        @media (min-width: 768px) {
            .timeline::before {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 20px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #FF5E00;
            box-shadow: 0 0 10px rgba(255, 94, 0, 0.7);
        }
        
        @media (min-width: 768px) {
            .timeline-item:nth-child(odd)::before {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .timeline-item:nth-child(even)::before {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        .team-card {
            position: relative;
            overflow: hidden;
        }
        
        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.05), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .team-card:hover::before {
            opacity: 1;
        }
        
        .value-card {
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .stats-card {
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.1), rgba(255, 138, 0, 0.05));
        }
        
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #121422;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #FF5E00;
            border-radius: 3px;
        }

        .contact-card {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.05), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .contact-card:hover::before {
            opacity: 1;
        }
        
        .form-input {
            background: rgba(30, 40, 66, 0.5);
            border: 1px solid #1E2130;
            color: #F0F2FF;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            border-color: #FF5E00;
            box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.1);
            outline: none;
        }
        
        .form-input::placeholder {
            color: #7A8296;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .contact-method:hover {
            background: rgba(255, 94, 0, 0.05);
        }
        
        .typewriter-text {
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid #FF5E00;
            animation: typewriter 2s steps(11) 1s 1 normal both,
                       blink 0.75s step-end infinite;
        }
        
        @keyframes blink {
            from, to { border-color: transparent; }
            50% { border-color: #FF5E00; }
        }
        
        .status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }
        
        .status-online {
            background-color: #00FF8F;
            box-shadow: 0 0 10px rgba(0, 255, 143, 0.7);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 143, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 255, 143, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 143, 0); }
        }
        
        .map-container {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
        }
        
        .map-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.1), transparent);
            pointer-events: none;
            z-index: 1;
        }
        .blog-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.05), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .blog-card:hover::before {
            opacity: 1;
        }
        
        .featured-blog-card {
            position: relative;
            overflow: hidden;
        }
        
        .featured-blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #FF5E00, #FF8A00);
            clip-path: polygon(100% 0, 0 0, 100% 100%);
            z-index: 1;
        }
        
        .featured-blog-card::after {
            content: 'FEATURED';
            position: absolute;
            top: 20px;
            right: 10px;
            color: white;
            font-size: 12px;
            font-weight: 700;
            z-index: 2;
            transform: rotate(45deg);
        }
        
        .blog-category {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .category-trading {
            background: rgba(0, 255, 143, 0.1);
            color: #00FF8F;
        }
        
        .category-analysis {
            background: rgba(0, 150, 255, 0.1);
            color: #0096FF;
        }
        
        .category-strategy {
            background: rgba(255, 94, 0, 0.1);
            color: #FF5E00;
        }
        
        .category-market {
            background: rgba(157, 78, 221, 0.1);
            color: #9D4EDD;
        }
        
        .category-security {
            background: rgba(255, 77, 109, 0.1);
            color: #FF4D6D;
        }
        
        .blog-image {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }
        
        .read-time {
            display: flex;
            align-items: center;
            color: #7A8296;
            font-size: 14px;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #FF5E00;
        }
        
        .pagination-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: #1E2130;
            color: #A0A5C0;
            transition: all 0.3s ease;
        }
        
        .pagination-btn:hover {
            background: #FF5E00;
            color: white;
        }
        
        .pagination-btn.active {
            background: #FF5E00;
            color: white;
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form input {
            padding-right: 140px;
        }
        /* Blog post content styling */
        .blog-content h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #F0F2FF;
        }
        
        .blog-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            color: #F0F2FF;
        }
        
        .blog-content p {
            margin-bottom: 1rem;
            line-height: 1.7;
            color: #A0A5C0;
        }
        
        .blog-content ul, .blog-content ol {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            color: #A0A5C0;
        }
        
        .blog-content li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }
        
        .blog-content blockquote {
            border-left: 4px solid #FF5E00;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: #F0F2FF;
        }
        
        .blog-content code {
            background: rgba(255, 94, 0, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: monospace;
            font-size: 0.9em;
            color: #FF8A00;
        }
        
        .blog-content pre {
            background: #121422;
            padding: 1rem;
            border-radius: 8px;
            overflow-x: auto;
            margin-bottom: 1rem;
            border: 1px solid #1E2130;
        }
        
        /* Tag styling */
        .tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255, 94, 0, 0.1);
            color: #FF8A00;
            border-radius: 20px;
            font-size: 12px;
            margin-right: 8px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: rgba(255, 94, 0, 0.2);
            transform: translateY(-2px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 640px) {
            .hero-heading {
                font-size: 2.5rem;
                line-height: 1.2;
            }
            
            .blog-image {
                height: 180px;
            }
        }