        :root {
            --primary: #6C63FF;
            --secondary: #4338ca;
            --success: #10b981;
            --danger: #ef4444;
            --dark: #1f2937;
            --light: #f9fafb;
            --gray: #9ca3af;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--light);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Basic text styles */
        h1, h2, h3, h4, h5, h6 {
            margin: 0;
            font-weight: bold;
            color: #fff; /* Text color */
            line-height: 1.2;
        }

        p {
            margin: 0 0 1rem 0;
            font-size: 1rem;
            color: #f4f4f4; /* Text color */
            line-height: 1;
        }

        /* Sizes and styles for h1 */
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        /* Sizes and styles for h2 */
        h2 {
            font-size: 2rem;
            margin-bottom: 1.25rem;
        }

        /* Sizes and styles for h3 */
        h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        /* Sizes and styles for h4 */
        h4 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        /* Sizes and styles for h5 */
        h5 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        /* Sizes and styles for h6 */
        h6 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--light);
            font-weight: 700;
            font-size: 1.4rem;
        }
        
        .logo-icon {
            margin-right: 0.8rem;
            color: var(--primary);
            font-size: 1.6rem;
        }
        
        .logo-text span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }
        
        .nav-item {
            margin: 0 0.2rem;
            position: relative;
        }
        
        .nav-link {
            color: var(--light);
            text-decoration: none;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--primary);
        }
        
        .nav-link.active {
            color: var(--primary);
            background: rgba(108, 99, 255, 0.1);
        }
        
        .nav-link i {
            margin-right: 0.5rem;
        }
        
        .dropdown-icon {
            margin-left: 0.4rem;
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        
        .has-dropdown:hover .dropdown-icon {
            transform: rotate(180deg);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 240px;
            background: rgba(31, 41, 55, 0.95);
            backdrop-filter: blur(12px);
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            overflow: hidden;
            z-index: 100;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: block;
            padding: 0.9rem 1.2rem;
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item i {
            margin-right: 0.8rem;
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--primary);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: transparent;
            color: var(--light);
            font-size: 1.5rem;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--primary);
        }
        
        /* Main content */
        .main-content {
            padding-top:6rem; /* Space for fixed navbar */
        }
        
        .hero-section {
            padding: 8rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #6C63FF, #4338ca);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 2rem;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            gap: 0.6rem;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #6C63FF, #4338ca);
            color: white;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
        }
        
        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--light);
            background: transparent;
        }
        
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .hero-image {
            max-width: 100%;
            margin-top: 2rem;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .features-section {
            padding: 6rem 2rem;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .feature-card {
            background: rgba(31, 41, 55, 0.5);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(4px);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .feature-card-sh {
            background: rgba(31, 41, 55, 0.5);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(4px);
        }
        
        .feature-card-sh:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .feature-description {
            color: var(--gray);
            line-height: 1.6;
        }
        
        .how-it-works {
            padding: 6rem 2rem;
            background: rgba(15, 23, 42, 0.6);
            position: relative;
        }
        
        .steps-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .step-list {
            position: relative;
            z-index: 1;
        }
        
        .step-list::before {
            content: '';
            position: absolute;
            left: 49px;
            top: 0;
            width: 2px;
            height: 100%;
            background: rgba(108, 99, 255, 0.2);
            z-index: -1;
        }
        
        .step-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .step-item:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(90deg, #6C63FF, #4338ca);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }
        
        .step-content {
            flex-grow: 1;
        }
        
        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--light);
        }
        
        .step-description {
            color: var(--gray);
            line-height: 1.6;
        }
        
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
        }
        
        .cta-card {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(67, 56, 202, 0.2));
            border-radius: 24px;
            padding: 4rem 2rem;
            border: 1px solid rgba(108, 99, 255, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        
        .cta-description {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer {
            background: rgba(15, 23, 42, 0.9);
            padding: 5.5rem 2rem 2rem;
            position: relative;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--light);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        .footer-about {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 0.8rem;
        }
        
        .social-link {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 0.8rem;
        }
        
        .footer-link a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-link a i {
            margin-right: 0.5rem;
            font-size: 0.7rem;
        }
        
        .footer-link a:hover {
            color: var(--primary);
            transform: translateX(3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .futuristic-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(108, 99, 255, 0.15), rgba(67, 56, 202, 0.15));
            filter: blur(80px);
            z-index: 0;
        }
        
        .shape-1 {
            width: 500px;
            height: 500px;
            top: -200px;
            right: -100px;
        }
        
        .shape-2 {
            width: 600px;
            height: 600px;
            bottom: -300px;
            left: -200px;
        }
        
        .shape-3 {
            width: 300px;
            height: 300px;
            top: 40%;
            left: 20%;
        }
                /* Styling for unsorted list */
        /* Lista */
        ul.custom-list {
            list-style-type: disc; /* Bullet style for list */
            padding-left: 40px; /* Left margin */
            margin-bottom: 16px;
        }

        /* Elemente de listă */
        ul.custom-list li {
            font-size: 16px;
        }
        ol.custom-list {
            list-style-type: decimal; /* Bullet style for list */
            padding-left: 40px; /* Left margin */
            margin-bottom: 16px;
        }

        /* Elemente de listă */
        ol.custom-list li {
            font-size: 16px;
        }
        pre {
    background-color: #1e1e1e; /* Dark background */
    color: #d4d4d4; /* Text color */
    padding: 5px;
    border-radius: 8px;
    font-family: 'Fira Code', monospace; /* Elegant monospace font */
    font-size: 15px;
    margin-bottom: 15px;
    border: 1px solid #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Add custom scrollbar */
    pre::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    pre::-webkit-scrollbar-thumb {
        background: #555;
        border-radius: 4px;
    }

    pre::-webkit-scrollbar-track {
        background: #222;
    }

        /* Mobile menu styles */
        @media (max-width: 767px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 300px;
                height: calc(100vh - 80px);
                flex-direction: column;
                align-items: flex-start;
                background: rgba(15, 23, 42, 0.95);
                backdrop-filter: blur(12px);
                border-right: 1px solid rgba(255, 255, 255, 0.05);
                padding: 2rem 1rem;
                transition: all 0.4s ease;
                overflow-y: auto;
              /* adaugat nou */
                width: 100vw; /* We use viewport width instead of percentages */
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                width: 100%;
                margin: 0;
                margin-bottom: 0.5rem;
            }
            
            .nav-link {
                width: 100%;
                padding: 1rem;
                border-radius: 8px;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                display: none;
                margin-top: 0.5rem;
                margin-bottom: 0.5rem;
                box-shadow: none;
                background: rgba(31, 41, 55, 0.5);
            }
            
            .has-dropdown.active .dropdown-menu {
                display: block;
            }
            
            .hamburger {
                display: block;
              
            }
            
            /* Additional tablet/phone adjustments */
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .step-item {
                flex-direction: column;
                gap: 1rem;
            }
            
            .step-list::before {
                left: 25px;
            }
            
            .cta-card {
                padding: 3rem 1.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media screen and (min-width: 768px) and (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .feature-title {
                font-size: 1.2rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }