        :root {
            --primary-color: #6366F1;
            --secondary-color: #8B5CF6;
            --accent-color: #F59E0B;
            --success-color: #10B981;
            --danger-color: #EF4444;
            --warning-color: #F59E0B;
            --info-color: #3B82F6;
            --dark-color: #1F2937;
            --darker-bg: #0A0A0A;
            --card-bg: rgba(30, 41, 59, 0.8);
            --text-primary: #F8FAFC;
            --text-secondary: #CBD5E1;
            --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
            --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
            --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
            --border-radius: 12px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
            --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #F59E0B 100%);
            --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #000;
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            width: 100vw;
        }

        .text-muted {
            --bs-text-opacity: 1;
            color: var(--text-secondary)!important;
        }

        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100%;
            background: var(--darker-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow: hidden;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(99, 102, 241, 0.3);
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Navigation */
        .navbar {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(99, 102, 241, 0.2);
            position: fixed;
            z-index: 1030;
            width: 100vw;
        }

        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.98);
            box-shadow: var(--shadow-card);
        }

        .navbar-brand {
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            text-decoration: none;
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
.dropdown-menu {
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: #c7d1dd;
    text-align: left;
    list-style: none;
    background-color: rgba(15, 23, 42, 0.95);
    background-clip: padding-box;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: #c6d0dc;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius,0);
}
.dropdown-item:hover {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.1);
    text-decoration: none;
}
.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    opacity: 1;
}
        /* Buttons */
        .btn-primary-gradient {
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
        }

        .btn-primary-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
            color: white;
        }

        .btn-outline-gradient {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-outline-gradient:hover {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-3px);
            border-color: transparent;
            box-shadow: var(--shadow-glow);
        }

        .btn-white {
            background: white;
            color: var(--dark-color);
            border: none;
            padding: 15px 35px;
            border-radius: var(--border-radius);
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            color: var(--dark-color);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-title {
            font-size: 5.0rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(10px);
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
            border-color: var(--primary-color);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            position: relative;
        }

        .feature-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: rgba(30, 41, 59, 0.3);
        }

        .pricing-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            text-align: center;
            height: 100%;
            position: relative;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .pricing-period {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 30px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 8px 0;
            color: var(--text-secondary);
        }

        .pricing-features li:before {
            content: "✅";
            margin-right: 10px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-primary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 8s ease-in-out infinite;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Table Styles */
        .feature-table {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(99, 102, 241, 0.2);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .feature-table table {
            width: 100%;
            margin: 0;
        }

        .feature-table th {
            background: var(--gradient-primary);
            color: white;
            padding: 20px;
            font-weight: 700;
            border: none;
        }

        .feature-table td {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
            color: var(--text-secondary);
        }

        .feature-table td:first-child {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: rgba(15, 23, 42, 0.95);
            padding: 60px 0 30px 0;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .footer-tagline {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .footer-bottom {
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            margin-top: 40px;
            padding-top: 30px;
            color: var(--text-secondary);
        }

        /* Use Case Cards */
        .use-case-card {
            background: var(--card-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            margin-bottom: 20px;
        }

        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow);
            border-color: var(--primary-color);
        }

        .use-case-icon {
            font-size: 2rem;
            margin-right: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
                margin-top: 3rem;
            }
            .hero-content {
                padding: 2rem;
            }
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        /* Special Animations */
        .rapid-fire {
            background: var(--gradient-success);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        
        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: rgb(10 10 10);
            backdrop-filter: blur(10px);
        }

        .stat-card {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        /* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(22, 33, 62, 0.5);
}

        .feature-card {
            background: rgba(16, 21, 62, 0.6);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            color: white;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: rgba(10, 10, 35, 0.3);
        }

        .process-step {
            text-align: center;
            margin-bottom: 50px;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin: 0 auto 25px;
        }

        .process-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .process-description {
            color: var(--text-secondary);
            max-width: 300px;
            margin: 0 auto;
        }

        /* Case Studies Section */
        .case-studies-section {
            padding: 100px 0;
        }

        .case-study-card {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(245, 158, 11, 0.2);
            transition: all 0.3s ease;
        }

        .case-study-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .case-study-header {
            padding: 30px;
            background: rgba(245, 158, 11, 0.1);
            border-bottom: 1px solid rgba(245, 158, 11, 0.2);
        }

        .case-study-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .case-study-subtitle {
            color: var(--text-secondary);
        }

        .case-study-body {
            padding: 30px;
        }

        .metric {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 10px;
            border-left: 4px solid var(--success-color);
        }

        .metric-label {
            color: var(--text-secondary);
        }

        .metric-value {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--success-color);
        }


        .highlight-box {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid var(--accent-color);
            border-radius: var(--border-radius);
            padding: 20px;
            margin: 20px 0;
        }

        .demo-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }


        
        /* Demo Section */
        .demo-section {
            padding: 100px 0;
            background: rgba(10, 10, 35, 0.5);
        }

        .demo-video {
            position: relative;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid rgba(99, 102, 241, 0.3);
        }

        .play-button {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        /* Testimonials */
        .testimonial-card {
            background: rgba(16, 21, 62, 0.8);
            border-radius: 20px;
            padding: 40px;
            border-left: 5px solid var(--accent-color);
            margin-bottom: 30px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 20px;
        }

        .author-info h5 {
            color: var(--accent-color);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--text-secondary);
            margin: 0;
        }


        @media (max-width: 576px) {
            .demo-buttons {
                flex-direction: column;
                align-items: center;
            }
        }



        .engagement-section {
            position: relative;
            background: var(--darker-bg);
            overflow: hidden;
        }

        .engagement-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

.content-card {
    background: rgba(22, 33, 62, 0.5);
    /* backdrop-filter: blur(20px); */
    /* border: 1px solid rgba(99, 102, 241, 0.2); */
    /* border-radius: var(--border-radius); */
    /* box-shadow: var(--shadow-card); */
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
    text-align: center;
}

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
        }

        .content-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
        }
        .engagement-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 40px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        .engagement-text {
            font-size: 1.4rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .highlight-word {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            position: relative;
        }

        .feature-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: var(--shadow-glow);
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
        }

        .feature-icon:nth-child(1) { animation-delay: -2s; }
        .feature-icon:nth-child(2) { animation-delay: -4s; }
        .feature-icon:nth-child(3) { animation-delay: -6s; }

        .feature-icon:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
        }

        .pulse-element {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .pulse-1 {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .pulse-2 {
            bottom: 10%;
            right: 10%;
            animation-delay: 2s;
        }

        @keyframes shimmer {
            0%, 100% { background-position: -200% center; }
            50% { background-position: 200% center; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
/* 
        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: scale(1.2);
                opacity: 0.1;
            }
        } */

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: particleFloat 8s linear infinite;
        }

        .particle:nth-child(odd) {
            background: var(--accent-color);
            animation-duration: 6s;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .engagement-title {
                font-size: 2.5rem;
            }
            
            .engagement-text {
                font-size: 1.2rem;
            }
            
            .content-card {
                padding: 40px 20px;
            }
            
            .feature-icons {
                gap: 20px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

.forging-section {
    position: relative;
    padding: 50px 0;
    background: var(--darker-bg);
    overflow: hidden;
}

        .forging-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .forging-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
            padding: 50px 40px;
            text-align: center;
        }

        .forging-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
        }

        .forging-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(245, 158, 11, 0.1), transparent, rgba(99, 102, 241, 0.1), transparent);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

.hammer-icon {
    font-size: 6rem;
    color: var(--accent-color);
    margin-bottom: -65px;
    animation: forge 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

        .forging-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .forge-text {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            text-shadow: none;
        }

        .forging-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .game-types {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

.game-type {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

        .game-type::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .game-type:hover::before {
            left: 100%;
        }

        .game-type:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }

         @keyframes forge {
            0%, 100% { 
                transform: rotate(-5deg) translateY(-10px);
            }
            25% { 
                transform: rotate(-55deg) translateY(-10px);
            }
            50% { 
                transform: rotate(-15deg) translateY(-10px);
            }
            75% { 
                transform: rotate(-5deg) translateY(-0px);
            }
        }
        @media (max-width: 768px) {
            .forging-title {
                font-size: 2.2rem;
            }
            
            .forging-subtitle {
                font-size: 1.1rem;
            }
            
            .forging-card {
                padding: 40px 20px;
            }
            
            .game-types {
                gap: 15px;
            }
            
            .game-type {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-deploy,
            .btn-demo {
                width: 100%;
                max-width: 300px;
            }
        }




        span.ignorebg {
            -webkit-text-fill-color: white!important;
        }




        .learnmore-section {
            background: var(--darker-bg);
            position: relative;
            overflow: hidden;
            padding: 5rem 0;


        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-bottom: 4rem;
        }

        .step-card {
            background: var(--card-bg);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(10px);
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow), var(--shadow-card);
            border-color: rgba(99, 102, 241, 0.4);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
        }

        .step-icon {
            font-size: 2.5rem;
            margin-right: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .step-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .step-description {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        .feature-list li::before {
            content: '✅';
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }

        .highlight-text {
            color: var(--accent-color);
            font-weight: 600;
        }

        .bonus-section {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bonus-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .bonus-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .bonus-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        .cta-section {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem 2rem;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            border: 1px solid rgba(99, 102, 241, 0.2);
            backdrop-filter: blur(10px);
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .btn-group-custom {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-custom {
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .btn-primary-custom {
            background: var(--gradient-primary);
            color: white;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
            color: white;
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border-color: rgba(99, 102, 241, 0.5);
        }

        .btn-outline-custom:hover {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-2px);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .floating-elements::before {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-elements::after {
            bottom: 20%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
    }


        @media (max-width: 768px) {
            .learnmore-section {
                .section-title {
                    font-size: 2.5rem;
                }
                
                .step-card {
                    padding: 2rem;
                }
                
                .step-title {
                    font-size: 1.5rem;
                }
                
                .btn-group-custom {
                    flex-direction: column;
                    align-items: center;
                }
                
                .btn-custom {
                    width: 100%;
                    max-width: 300px;
                }
            }
        }





















        .hero-section2 {
            min-height: 100vh;
            background: var(--darker-bg);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;

                
            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: 
                    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
                animation: float 8s ease-in-out infinite;
            }

            @keyframes float {
                0%, 100% { transform: translateY(0px) rotate(0deg); }
                50% { transform: translateY(-20px) rotate(1deg); }
            }

            .hero-content {
                position: relative;
                z-index: 2;
                text-align: center;
                margin: 0 auto;
                padding: 2rem;
            }

            .hero-title {
                font-size: clamp(1.5rem, 5vw, 3.5rem);
                font-weight: 800;
                background: var(--gradient-primary);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                margin-bottom: 1.5rem;
                line-height: 1.1;
                text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
                animation: glow 3s ease-in-out infinite alternate;
            }

            @keyframes glow {
                from { filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3)); }
                to { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6)); }
            }

            .hero-subtitle {
                font-size: clamp(1.1rem, 3vw, 1.5rem);
                color: var(--text-secondary);
                margin-bottom: 2rem;
                line-height: 1.6;
                font-weight: 300;
            }

            .feature-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
                margin: 3rem 0;
            }

            .feature-card {
                background: var(--card-bg);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(99, 102, 241, 0.2);
                border-radius: var(--border-radius);
                padding: 1.5rem;
                text-align: left;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .feature-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: var(--gradient-primary);
                transform: scaleX(0);
                transition: transform 0.3s ease;
            }

            .feature-card:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-glow);
                border-color: var(--primary-color);
            }

            .feature-card:hover::before {
                transform: scaleX(1);
            }

            .feature-icon {
                font-size: 3rem;
                background: var(--gradient-primary);
                margin-top: 1rem;
                display: flex;
            }

            .feature-title {
                color: var(--text-primary);
                font-size: 1.1rem;
                font-weight: 600;
                margin-bottom: 0.5rem;
            }

            .feature-desc {
                color: var(--text-secondary);
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .highlight-section {
                background: var(--card-bg);
                backdrop-filter: blur(10px);
                border-radius: var(--border-radius);
                padding: 2.5rem;
                margin: 3rem 0;
                border: 1px solid rgba(99, 102, 241, 0.2);
                position: relative;
                overflow: hidden;
            }

            .highlight-section::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.1), transparent);
                animation: rotate 20s linear infinite;
                z-index: -1;
            }

                    .highlight-text {
                font-size: clamp(1.2rem, 4vw, 2rem);
                color: var(--text-primary);
                font-weight: 600;
                line-height: 1.4;
                margin-bottom: 1rem;
            }

            .highlight-emoji {
                font-size: 1.5em;
                margin-right: 0.5rem;
                animation: bounce 2s infinite;
            }
            .cta-section {
                padding: 20px 0;
                background: var(--gradient-primary);
                text-align: center;
                border-radius: 10px;
                position: relative;
                overflow: hidden;
            }

            .cta-text {
                font-size: clamp(1.3rem, 4vw, 2.2rem);
                color: var(--text-primary);
                font-weight: 700;
                margin-bottom: 1rem;
            }

            .cta-subtext {
                font-size: clamp(1rem, 3vw, 1.3rem);
                color: var(--text-secondary);
                font-weight: 400;
            }

            .floating-elements {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                pointer-events: none;
                z-index: 1;
            }

            .floating-element {
                position: absolute;
                opacity: 0.1;
                animation: floatRandom 15s ease-in-out infinite;
            }

            .floating-element:nth-child(1) {
                top: 20%;
                left: 10%;
                font-size: 2rem;
                animation-delay: -2s;
            }

            .floating-element:nth-child(2) {
                top: 60%;
                right: 15%;
                font-size: 1.5rem;
                animation-delay: -5s;
            }

            .floating-element:nth-child(3) {
                bottom: 30%;
                left: 20%;
                font-size: 1.8rem;
                animation-delay: -8s;
            }

            .floating-element:nth-child(4) {
                top: 40%;
                right: 30%;
                font-size: 1.3rem;
                animation-delay: -11s;
            }
            
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }



        @keyframes floatRandom {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-20px) translateX(10px) rotate(5deg); }
            50% { transform: translateY(10px) translateX(-15px) rotate(-3deg); }
            75% { transform: translateY(-10px) translateX(5px) rotate(2deg); }
        }

        @media (max-width: 768px) {
            .hero-content2 {
                padding: 1rem;
            
                .feature-grid {
                    grid-template-columns: 1fr;
                    gap: 1rem;
                }
                
                .highlight-section {
                    padding: 1.5rem;
                    margin: 2rem 0;
                }
            }

        }