

/* ========================================== */
/* Extracted from inline styles */
/* ========================================== */


/* ========== Style Block 1 ========== */
/* Global overflow prevention */
        html, body {
            overflow-x: hidden;
            max-width: 100vw;
            position: relative;
        }
        
        /* Prevent images and media from overflowing */
        img, video, iframe, embed, object {
            max-width: 100%;
            height: auto;
        }
        
        /* Ensure all sections stay within viewport - prevent scrollbars */
        section {
            overflow: hidden;
        }
        
        /* Animation delay utilities */
        .animation-delay-150 {
            animation-delay: 150ms;
        }
        .animation-delay-300 {
            animation-delay: 300ms;
        }
        .animation-delay-450 {
            animation-delay: 450ms;
        }
        .animation-delay-600 {
            animation-delay: 600ms;
        }
        
        /* Force mobile button stacking */
        @media (max-width: 768px) {
            .cta-buttons {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 1rem !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .cta-buttons a {
                margin: 0 !important;
                width: auto !important;
                display: inline-block !important;
            }
        }
        
        /* Mobile: Center all CTA buttons */
        @media (max-width: 768px) {
            /* Center standalone CTA buttons on mobile */
            .mobile-center-btn {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
            }
            .mobile-center-btn a {
                display: inline-block !important;
                width: auto !important;
                text-align: center !important;
            }
            
            /* Reduce hero section bottom padding on mobile */
            #hero {
                padding-bottom: 3rem !important; /* pb-12, half of pb-24 */
            }
        }
        
        /* Custom styles for Pro Plan pricing table */
        .pro-plan .bg-primary {
            background-color: rgba(197, 9, 251, 0.8) !important;
        }
        
        .pro-plan .text-primary {
            color: rgb(197, 9, 251) !important;
        }
        
        .pro-plan .bg-primary\/20 {
            background-color: rgba(197, 9, 251, 0.2) !important;
        }
        
        .pro-plan .hover\:bg-primary\/80:hover {
            background-color: rgba(197, 9, 251, 0.8) !important;
        }
        
        .pro-plan .border-primary {
            border-color: rgba(197, 9, 251, 0.8) !important;
        }
        
        .pro-plan .focus\:ring-primary:focus {
            --tw-ring-color: rgba(197, 9, 251, 0.8) !important;
        }
        
        .pro-plan .hover\:shadow-primary\/20:hover {
            --tw-shadow-color: rgba(197, 9, 251, 0.2) !important;
            --tw-shadow: var(--tw-shadow-colored);
        }
        
        /* Additional hover styles for Pro Plan */
        .pro-plan button:hover {
            background-color: rgb(197, 9, 251) !important;
        }
        
        .pro-plan button {
            background-color: rgb(197, 9, 251) !important;
        }
        
        .pro-plan button:focus {
            --tw-ring-color: rgba(197, 9, 251, 0.5) !important;
        }
        
        /* Fix table hover effects */
        .pro-plan:hover {
            box-shadow: 0 20px 25px -5px rgba(197, 9, 251, 0.1), 0 8px 10px -6px rgba(197, 9, 251, 0.1) !important;
        }
        
        .pro-plan.hover\:shadow-primary\/20:hover {
            --tw-shadow-color: rgba(197, 9, 251, 0.2) !important;
            --tw-shadow: var(--tw-shadow-colored) !important;
        }
        
        /* Additional hover effects */
        .pro-plan .hover\:shadow-neon-md:hover,
        .pro-plan .hover\:shadow-neon-sm:hover {
            --tw-shadow: 0 0 15px 3px rgba(197, 9, 251, 0.3) !important;
            --tw-shadow-colored: 0 0 15px 3px var(--tw-shadow-color) !important;
            box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
        }
        
        .pro-plan .hover\:shadow-primary\/30:hover {
            --tw-shadow-color: rgba(197, 9, 251, 0.3) !important;
            --tw-shadow: var(--tw-shadow-colored) !important;
        }
        
        .pro-plan .hover\:border-primary\/40:hover,
        .pro-plan .hover\:border-primary\/50:hover {
            border-color: rgba(197, 9, 251, 0.5) !important;
        }
        
        .pro-plan .hover\:text-primary:hover {
            color: rgb(197, 9, 251) !important;
        }
        
        /* Chart styles */
        .chart-container {
            background: rgba(10, 10, 18, 0.5);
            border-radius: 0.75rem;
            border: 1px solid rgba(126, 34, 206, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(4px);
            overflow: hidden;
        }
        
        /* Bar chart */
        .bar-chart {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 170px;
            padding: 1rem;
        }
        
        .bar {
            width: 24px;
            background: linear-gradient(180deg, #7e22ce, #4f46e5);
            border-radius: 4px 4px 0 0;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
        }
        
        .bar:hover {
            filter: brightness(1.2);
            box-shadow: 0 0 15px rgba(79, 70, 229, 0.7);
        }
        
        .bar-label {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
        }
        
        .bar-value {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            font-weight: 600;
            color: #7e22ce;
        }
        
        /* Pie chart */
        .pie-chart {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto;
        }
        
        .pie-slice {
            position: absolute;
            width: 100%;
            height: 100%;
            clip-path: polygon(50% 50%, 100% 0, 100% 100%);
            transform-origin: center;
            background: #7e22ce;
            box-shadow: 0 0 15px rgba(126, 34, 206, 0.4);
        }
        
        .pie-center {
            position: absolute;
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            background: rgba(10, 10, 18, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
        }
        
        .pie-legend {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            font-size: 0.75rem;
        }
        
        .pie-legend-item {
            display: flex;
            align-items: center;
            margin: 0 0.5rem;
        }
        
        .pie-legend-color {
            width: 10px;
            height: 10px;
            margin-right: 5px;
            border-radius: 2px;
        }
        
        /* Line graph */
        .line-graph {
            position: relative;
            height: 150px;
            padding: 1.5rem 1rem 2rem;
        }
        
        .line-graph-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, #7e22ce, #4f46e5);
            bottom: 30px;
            left: 30px;
            right: 10px;
            box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
        }
        
        .line-point {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4f46e5;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 8px rgba(79, 70, 229, 0.8);
        }
        
        .line-label {
            position: absolute;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.7);
            transform: translateX(-50%);
            bottom: 8px;
        }
        
        .line-value {
            position: absolute;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(50%);
            left: 10px;
        }
        
        .chart-title {
            text-align: center;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin: 0.5rem 0;
        }
        
        /* Slow ping animation */
        @keyframes ping-slow {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                opacity: 0.4;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        .animate-ping-slow {
            animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        /* Fix animation issues */
        .animate-fadeInUp, .animate-fadeInUp-delay-1, .animate-fadeInUp-delay-2, .animate-fadeInUp-delay-3 {
            opacity: 0;
        }
        
        /* Glowing text effect */
        .text-glow {
            text-shadow: 0 0 15px rgba(0, 188, 230, 0.5);
        }
        
        .text-glow-purple {
            text-shadow: 0 0 15px rgba(197, 9, 251, 0.5);
        }
        
        /* Separate gradients for Neo and Writer to match Dope SEO */
        .neo-gradient {
            background: linear-gradient(90deg, #00bce6 0%, #3b49ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(0, 188, 230, 0.3);
        }
        
        .writer-gradient {
            background: linear-gradient(90deg, #3b49ff 0%, #c509fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(197, 9, 251, 0.3);
        }
        
        /* Hidden separator to prevent gradient bleeding */
        .logo-separator {
            display: inline-block;
            width: 0;
            margin-right: 0;
            opacity: 0;
        }
        
        /* Animated gradient border */
        @keyframes border-glow {
            0%, 100% { border-color: rgba(0, 188, 230, 0.7); }
            50% { border-color: rgba(197, 9, 251, 0.7); }
        }
        
        .border-glow-animate {
            animation: border-glow 4s ease-in-out infinite;
        }
        
        /* Terminal typing effect for bulk backlinks section */
        #bulk-backlinks .font-mono p {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        #bulk-backlinks .font-mono p.opacity-100 {
            opacity: 1;
        }
        
        /* Network connection animation - Optimized for performance */
        @keyframes flowDash {
            to {
                stroke-dashoffset: 20;
            }
        }
        
        /* Enhanced animations for backlinks */
        @keyframes pulseGlow {
            0%, 100% { filter: drop-shadow(0 0 2px rgba(126, 34, 206, 0.3)); }
            50% { filter: drop-shadow(0 0 6px rgba(126, 34, 206, 0.7)); }
        }
        
        /* Arrow marker animation - Simplified */
        @keyframes markerPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        /* Site node hover effect */
        .site-node-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .site-node-hover:hover {
            transform: scale(1.15);
            filter: drop-shadow(0 0 10px rgba(126, 34, 206, 0.8));
        }
        
        /* Connected line highlight on node hover */
        .highlight-on-hover {
            transition: all 0.3s ease;
        }

        /* Primary gradient fill for node circles */
        .fill-primary-gradient {
            fill: url(#nodeGradient);
        }
        
        /* Stroke classes for SVG elements */
        .stroke-primary {
            stroke: #7e22ce;
        }
        
        .stroke-secondary {
            stroke: #4f46e5;
        }
        
        .fill-secondary {
            fill: #4f46e5;
        }
        
        /* CSS-only network visualization */
        .network-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        @media (max-width: 1023px) {
            .network-container {
                height: 450px; /* Slightly taller on tablet for better proportions */
            }
        }
        
        @media (max-width: 767px) {
            .network-container {
                height: 500px; /* Even taller on mobile for better visibility */
                margin-top: 1rem;
                margin-bottom: 1rem;
            }
            
            /* Adjust the stats widget position on mobile */
            .network-container .absolute.bottom-4.right-4 {
                bottom: 8px;
                right: 8px;
                transform: scale(0.95);
                transform-origin: bottom right;
            }
            
            .network-node .backlink-node {
                transform: scale(0.9);
            }
            
            .node-circle {
                transform: scale(0.95);
            }
            
            .pulse-dot {
                r: 2.5;
            }
        }
        
        @media (max-width: 479px) {
            .network-container {
                height: 450px; /* Slightly shorter again on very small screens */
            }
            
            .network-container .absolute.bottom-4.right-4 {
                transform: scale(0.9);
            }
            
            .network-node .backlink-node {
                transform: scale(0.85);
            }
            
            .node-label {
                font-size: 10px;
            }
            
            .node-circle {
                transform: scale(0.9);
            }
        }
        
        .network-node {
            position: absolute;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        
        .node-circle {
            background: linear-gradient(135deg, #7e22ce, #4f46e5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 10px rgba(126, 34, 206, 0.7);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 15; /* Increased z-index to ensure circles are above dotted lines */
        }
        
        .node-circle:hover {
            transform: scale(1.15);
            box-shadow: 0 0 20px rgba(126, 34, 206, 0.9);
        }
        
        .node-label {
            margin-top: 5px;
            text-align: center;
            color: white;
            font-weight: 500;
        }
        
        .network-connection {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, #7e22ce, #4f46e5);
            transform-origin: left center;
            z-index: 5;
        }
        
        .connection-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: #4f46e5;
            border-radius: 50%;
            z-index: 6;
        }
        
        /* Animation for flowing dots along connections */
        @keyframes flowDot {
            0% {
                left: 0%;
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                left: 100%;
                opacity: 0;
            }
        }
        
        .animate-flow {
            animation: flowDot 4s linear infinite;
        }
        
        /* Animation delays */
        .delay-100 { animation-delay: 100ms; }
        .delay-200 { animation-delay: 200ms; }
        .delay-300 { animation-delay: 300ms; }
        .delay-400 { animation-delay: 400ms; }
        .delay-500 { animation-delay: 500ms; }
        
        /* Node pulse animation */
        @keyframes nodePulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 0 5px rgba(126, 34, 206, 0.5);
            }
            50% { 
                transform: scale(1.05); 
                box-shadow: 0 0 15px rgba(126, 34, 206, 0.8);
            }
        }
        
        .pulse-animation {
            animation: nodePulse 3s ease-in-out infinite;
        }
        
        @keyframes pulseDot {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }
        
        .pulse-dot {
            animation: pulseDot 3s infinite ease-in-out;
        }
        
        .delay-100 { animation-delay: 100ms; }
        .delay-150 { animation-delay: 150ms; }
        .delay-200 { animation-delay: 200ms; }
        .delay-250 { animation-delay: 250ms; }
        .delay-300 { animation-delay: 300ms; }
        .delay-350 { animation-delay: 350ms; }
        .delay-400 { animation-delay: 400ms; }
        .delay-450 { animation-delay: 450ms; }
        .delay-500 { animation-delay: 500ms; }
        
        /* Responsive adjustments for network visualization */
        @media (max-width: 1023px) {
            #backlinks-network .lg\:w-1\/2:first-child {
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 767px) {
            #backlinks-network .lg\:w-1\/2:first-child {
                margin-bottom: 3rem;
            }
            
            .network-container {
                height: 500px; /* Even taller on mobile for better visibility */
                margin-top: 1rem;
                margin-bottom: 1rem;
            }
            
            /* Adjust the stats widget position on mobile */
            .network-container .absolute.bottom-4.right-4 {
                bottom: 8px;
                right: 8px;
                transform: scale(0.95);
                transform-origin: bottom right;
            }
            
            .network-node .backlink-node {
                transform: scale(0.9);
            }
            
            .node-circle {
                transform: scale(0.95);
            }
            
            .pulse-dot {
                r: 2.5;
            }
        }
        
        @media (max-width: 479px) {
            .network-container {
                height: 450px; /* Slightly shorter again on very small screens */
            }
            
            .network-container .absolute.bottom-4.right-4 {
                transform: scale(0.9);
            }
            
            .network-node .backlink-node {
                transform: scale(0.85);
            }
            
            .node-label {
                font-size: 10px;
            }
            
            .node-circle {
                transform: scale(0.9);
            }
        }

        /* Ensure SVG connections adjust responsively */
        .network-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%; 
            height: 100%;
            overflow: visible;
            pointer-events: none;
        }

        /* Responsive SVG positioning for different screen sizes */
        @media (max-width: 767px) {
            /* Ensure connections remain visible and correct on different screen sizes */
            .network-svg line {
                stroke-width: 2.5; /* Slightly thinner lines on mobile */
            }
        }

        @media (max-width: 479px) {
            .network-svg line {
                stroke-width: 2; /* Even thinner lines on very small screens */
            }
        }

        /* Responsive spacing adjustments for backlinks network section */
        @media (max-width: 1023px) {
            #backlinks-network .feature-list-container {
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 767px) {
            #backlinks-network .feature-list-container {
                margin-bottom: 3rem;
            }
            
            .network-container {
                height: 500px; /* Even taller on mobile for better visibility */
                margin-top: 1rem;
                margin-bottom: 1rem;
            }
        }

        /* Define a specific override for the hover class to prevent the blue glow */
        .pricing-column.pro-plan.hover\:shadow-primary\/20,
        .pricing-column.pro-plan {
            transition-property: box-shadow, transform;
            transition-duration: 300ms;
        }
        
        /* This is directly targeting the hover effect on the Pro Plan div */
        .pricing-column.pro-plan:hover {
            --tw-shadow-color: rgba(197, 9, 251, 0.2) !important;
            --tw-shadow: var(--tw-shadow-colored) !important;
            box-shadow: 0 20px 25px -5px rgba(197, 9, 251, 0.1), 0 8px 10px -6px rgba(197, 9, 251, 0.2) !important;
        }
        
        /* Catch-all for any other hover effects */
        [class*="hover"]:hover .pro-plan {
            --tw-shadow-color: rgba(197, 9, 251, 0.2) !important;
            --tw-shadow: var(--tw-shadow-colored) !important;
        }
        
        /* Apply purple shadows to all hover effects */
        .hover\:shadow-primary\/20:hover {
            --tw-shadow-color: rgba(0, 188, 230, 0.2);
        }
        
        /* Special override for Pro Plan */
        .pricing-column.pro-plan.hover\:shadow-primary\/20:hover {
            --tw-shadow-color: rgba(197, 9, 251, 0.2) !important;
        }
        
        /* Apply this directly to override any other hover effects */
        div.pricing-column.pro-plan.hover\:shadow-primary\/20:hover {
            --tw-shadow-color: rgba(197, 9, 251, 0.2) !important;
            --tw-shadow: 0 20px 25px -5px rgba(197, 9, 251, 0.1), 0 8px 10px -6px rgba(197, 9, 251, 0.2) !important;
            box-shadow: var(--tw-shadow) !important;
        }
        
        /* Important override to ensure our color is used */
        body .pro-plan.hover\:shadow-primary\/20:hover {
            --tw-shadow-color: rgba(197, 9, 251, 0.2) !important;
            --tw-shadow: 0 20px 25px -5px rgba(197, 9, 251, 0.1), 0 8px 10px -6px rgba(197, 9, 251, 0.2) !important;
            box-shadow: var(--tw-shadow) !important;
        }

/* ========== Style Block 2 ========== */
/* Code particles styling */
                .code-particle {
                    position: absolute;
                    font-family: monospace;
                    font-size: 12px;
                    background: rgba(10, 10, 40, 0.6);
                    border-radius: 4px;
                    padding: 4px 8px;
                    color: rgba(255, 255, 255, 0.7);
                    opacity: 0;
                    transform: translateY(20px);
                    animation: floatUp 15s linear infinite;
                    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
                    border-left: 2px solid #8b5cf6;
                }
                
                .code-particle-1 {
                    left: 15%;
                    top: 30%;
                    animation-delay: 0s;
                }
                
                .code-particle-2 {
                    left: 25%;
                    top: 50%;
                    animation-delay: 3s;
                }
                
                .code-particle-3 {
                    right: 15%;
                    top: 35%;
                    animation-delay: 6s;
                }
                
                .code-particle-4 {
                    right: 25%;
                    top: 60%;
                    animation-delay: 9s;
                }
                
                .code-particle-5 {
                    left: 40%;
                    top: 70%;
                    animation-delay: 12s;
                }
                
                .code-particle-6 {
                    right: 35%;
                    top: 25%;
                    animation-delay: 7s;
                }
                
                .code-particle-7 {
                    left: 10%;
                    top: 20%;
                    animation-delay: 5s;
                }
                
                .code-particle-8 {
                    right: 15%;
                    top: 15%;
                    animation-delay: 8s;
                }
                
                .code-particle-9 {
                    left: 60%;
                    top: 40%;
                    animation-delay: 10s;
                }
                
                @keyframes floatUp {
                    0% {
                        opacity: 0;
                        transform: translateY(20px);
                    }
                    5% {
                        opacity: 0.7;
                    }
                    80% {
                        opacity: 0.7;
                    }
                    100% {
                        opacity: 0;
                        transform: translateY(-100px);
                    }
                }
                
                /* Code syntax highlighting */
                .code-keyword {
                    color: #f472b6;
                }
                
                .code-function {
                    color: #60a5fa;
                }
                
                .code-variable {
                    color: #a78bfa;
                }
                
                .code-string {
                    color: #34d399;
                }
                
                .code-number {
                    color: #fb923c;
                }
                
                .code-comment {
                    color: #94a3b8;
                }
                
                /* Text processing indicators */
                .text-processor {
                    position: absolute;
                    width: 100px;
                    height: 80px;
                    opacity: 0.6;
                }
                
                .text-processor-left {
                    left: 5%;
                    top: 40%;
                }
                
                .text-processor-right {
                    right: 5%;
                    top: 50%;
                }
                
                .processing-line {
                    height: 2px;
                    background: linear-gradient(90deg, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.8), rgba(139, 92, 246, 0));
                    margin: 12px 0;
                    position: relative;
                    overflow: hidden;
                }
                
                .processing-line::after {
                    content: '';
                    position: absolute;
                    height: 100%;
                    width: 50%;
                    background: linear-gradient(90deg, rgba(139, 92, 246, 0), rgba(255, 255, 255, 0.8), rgba(139, 92, 246, 0));
                    animation: processLine 2s infinite;
                }
                
                .processing-line:nth-child(2)::after {
                    animation-delay: 0.5s;
                }
                
                .processing-line:nth-child(3)::after {
                    animation-delay: 1s;
                }
                
                @keyframes processLine {
                    0% {
                        left: -50%;
                    }
                    100% {
                        left: 100%;
                    }
                }
                
                /* Data streams */
                .data-stream {
                    position: absolute;
                    width: 1px;
                    height: 100px;
                    background: linear-gradient(to bottom, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.8), rgba(139, 92, 246, 0));
                    animation: dataFlow 4s infinite;
                }
                
                .data-stream-1 {
                    left: 20%;
                    top: 15%;
                    height: 180px;
                }
                
                .data-stream-2 {
                    right: 30%;
                    top: 20%;
                    height: 220px;
                    animation-delay: 1s;
                }
                
                .data-stream-3 {
                    left: 70%;
                    top: 10%;
                    height: 150px;
                    animation-delay: 2s;
                }
                
                @keyframes dataFlow {
                    0% {
                        opacity: 0;
                        transform: translateY(-100%);
                    }
                    50% {
                        opacity: 0.8;
                    }
                    100% {
                        opacity: 0;
                        transform: translateY(100%);
                    }
                }

/* ========== Style Block 3 ========== */
/* Container for WordPress diagram */
                             .wordpress-diagram-container {
                                 height: 160px;
                                 position: relative;
                                 margin-top: 20px;
                             }
                             
                             /* Horizontal bar */
                             .horizontal-bar {
                                 position: absolute;
                                 top: 0;
                                 left: 10%;
                                 right: 10%;
                                 height: 3px;
                                 background: #7e22ce;
                                 box-shadow: 0 0 10px rgba(126, 34, 206, 0.5);
                             }
                             
                             /* WordPress site circles */
                             .wp-site-circle {
                                 position: absolute;
                                 top: 3px;
                                 text-align: center;
                                 display: flex;
                                 flex-direction: column;
                                 align-items: center;
                                 width: 80px;
                             }
                             
                             .wp-site-1 {
                                 left: 10%;
                                 transform: translateX(-50%);
                             }
                             
                             .wp-site-2 {
                                 left: 36.66%;
                                 transform: translateX(-50%);
                             }
                             
                             .wp-site-3 {
                                 left: 63.33%;
                                 transform: translateX(-50%);
                             }
                             
                             .wp-site-4 {
                                 left: 90%;
                                 transform: translateX(-50%);
                             }
                             
                             .wp-circle {
                                 position: relative;
                                 margin-bottom: 10px;
                             }
                             
                             .wp-connector-line {
                                 width: 2px;
                                 height: 25px;
                                 background: rgba(126, 34, 206, 0.6);
                                 margin: 0 auto;
                             }
                             
                             .wp-logo-container {
                                 width: 60px;
                                 height: 60px;
                                 border-radius: 50%;
                                 background: rgba(10, 10, 18, 0.8);
                                 border: 2px solid rgba(126, 34, 206, 0.4);
                                 display: flex;
                                 align-items: center;
                                 justify-content: center;
                                 box-shadow: 0 0 15px rgba(126, 34, 206, 0.3);
                                 position: relative;
                             }
                             
                             .wp-site-label {
                                 font-size: 12px;
                                 color: rgba(255, 255, 255, 0.8);
                                 margin-top: 5px;
                             }
                             
                             /* Pulsing animation for WordPress icons */
                             @keyframes wp-pulse {
                                 0% {
                                     transform: scale(1);
                                     opacity: 1;
                                 }
                                 50% {
                                     transform: scale(1.2);
                                     opacity: 0.8;
                                 }
                                 100% {
                                     transform: scale(1);
                                     opacity: 1;
                                 }
                             }
                             
                             .wp-pulse {
                                 animation: wp-pulse 2s infinite;
                             }
                             
                             /* Data particle animation */
                             .data-particle {
                                 position: absolute;
                                 width: 6px;
                                 height: 6px;
                                 border-radius: 3px;
                                 background: #7e22ce;
                                 opacity: 0;
                                 z-index: 2;
                             }
                             
                             @keyframes particle-move-vertical {
                                 0% {
                                     opacity: 0;
                                     transform: translateY(0);
                                 }
                                 10% {
                                     opacity: 0.8;
                                 }
                                 90% {
                                     opacity: 0.8;
                                 }
                                 100% {
                                     opacity: 0;
                                     transform: translateY(-25px);
                                 }
                             }
                             
                             .particle-1 {
                                 left: 10%;
                                 top: 80px;
                                 animation: particle-move-vertical 3s infinite;
                             }
                             
                             .particle-2 {
                                 left: 36.66%;
                                 top: 80px;
                                 animation: particle-move-vertical 3s infinite;
                                 animation-delay: 0.75s;
                             }
                             
                             .particle-3 {
                                 left: 63.33%;
                                 top: 80px;
                                 animation: particle-move-vertical 3s infinite;
                                 animation-delay: 1.5s;
                             }
                             
                             .particle-4 {
                                 left: 90%;
                                 top: 80px;
                                 animation: particle-move-vertical 3s infinite;
                                 animation-delay: 2.25s;
                             }

/* ========== Style Block 4 ========== */
.glass-panels-wrapper {
      position: relative;
      width: 100%;
      height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    \.glass-container {
      position: relative;
      width: 100%;
      max-width: 620px;
      height: 400px;
      overflow: visible;
      z-index: 11;
    }
    
    .glass-box {
      position: absolute;
      width: 85%;
      max-width: 480px;
      border-radius: 12px;
      overflow: hidden;
      background: rgba(19, 27, 46, 0.6);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 188, 230, 0.2);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px 2px rgba(0, 188, 230, 0.15);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    
    .glass-box img {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0.95;
      transition: opacity 0.3s ease;
    }
    
    .glass-box:hover {
      transform: translateY(-12px) scale(1.04);
      z-index: 100 !important;
      border-color: rgba(0, 188, 230, 0.5);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px 5px rgba(0, 188, 230, 0.3);
    }
    
    .glass-box:hover img {
      opacity: 1;
    }
    
    /* Scattered positioning for all 11 panels - same size, spread across space */
    .glass-box:nth-child(1) { 
      top: 30px; 
      left: -180px; 
      z-index: 1;
    }
    
    .glass-box:nth-child(2) { 
      top: 120px; 
      left: -90px; 
      z-index: 2;
    }
    
    .glass-box:nth-child(3) { 
      top: 200px; 
      left: -160px; 
      z-index: 3;
    }
    
    .glass-box:nth-child(4) { 
      top: 60px; 
      left: 10px; 
      z-index: 4;
    }
    
    .glass-box:nth-child(5) { 
      top: 280px; 
      left: -60px; 
      z-index: 5;
    }
    
    .glass-box:nth-child(6) { 
      top: 150px; 
      left: 90px; 
      z-index: 6;
    }
    
    .glass-box:nth-child(7) { 
      top: 10px; 
      left: 170px; 
      z-index: 7;
    }
    
    .glass-box:nth-child(8) { 
      top: 240px; 
      left: 60px; 
      z-index: 8;
    }
    
    .glass-box:nth-child(9) { 
      top: 90px; 
      left: 250px; 
      z-index: 9;
    }
    
    .glass-box:nth-child(10) { 
      top: 180px; 
      left: 190px; 
      z-index: 10;
    }
    
    .glass-box:nth-child(11) { 
      top: 320px; 
      left: 220px; 
      z-index: 11;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .glass-panels-wrapper {
        height: 300px;
        overflow: visible;
        max-width: 100%;
        padding: 0;
        width: 100%;
      }
      
      .glass-container {
        height: 280px;
        overflow: visible;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        position: relative;
      }
      
      .glass-box {
        width: 60%;
        max-width: 220px;
      }
      
      .glass-box:hover {
        transform: translateY(-8px) scale(1.02);
      }
      
      /* Compact positioning - visible and within bounds */
      .glass-box:nth-child(1) { top: 10px; left: 2%; z-index: 1; }
      .glass-box:nth-child(2) { top: 50px; left: 15%; z-index: 2; }
      .glass-box:nth-child(3) { top: 90px; left: 5%; z-index: 3; }
      .glass-box:nth-child(4) { top: 20px; left: 32%; z-index: 4; }
      .glass-box:nth-child(5) { top: 130px; left: 20%; z-index: 5; }
      .glass-box:nth-child(6) { top: 60px; left: 45%; z-index: 6; }
      .glass-box:nth-child(7) { top: 5px; left: 55%; z-index: 7; }
      .glass-box:nth-child(8) { top: 100px; left: 38%; z-index: 8; }
      .glass-box:nth-child(9) { top: 35px; left: 65%; z-index: 9; }
      .glass-box:nth-child(10) { top: 75px; left: 52%; z-index: 10; }
      .glass-box:nth-child(11) { top: 140px; left: 8%; z-index: 11; }
    }
    
    @media (max-width: 480px) {
      .glass-panels-wrapper {
        height: 280px;
      }
      
      .glass-container {
        height: 260px;
      }
      
      .glass-box {
        width: 55%;
        max-width: 190px;
      }
      
      /* Compact for small phones */
      .glass-box:nth-child(1) { top: 8px; left: 3%; }
      .glass-box:nth-child(2) { top: 42px; left: 18%; }
      .glass-box:nth-child(3) { top: 76px; left: 6%; }
      .glass-box:nth-child(4) { top: 18px; left: 35%; }
      .glass-box:nth-child(5) { top: 110px; left: 22%; }
      .glass-box:nth-child(6) { top: 52px; left: 48%; }
      .glass-box:nth-child(7) { top: 5px; left: 58%; }
      .glass-box:nth-child(8) { top: 86px; left: 40%; }
      .glass-box:nth-child(9) { top: 32px; left: 68%; }
      .glass-box:nth-child(10) { top: 64px; left: 55%; }
      .glass-box:nth-child(11) { top: 120px; left: 10%; }
    }

/* ========== Style Block 5 ========== */
@keyframes pulseDot {
                                        0%, 100% { opacity: 0.2; }
                                        50% { opacity: 1; }
                                    }
                                    
                                    .pulse-dot {
                                        animation: pulseDot 3s infinite ease-in-out;
                                    }
                                    
                                    .delay-100 { animation-delay: 100ms; }
                                    .delay-150 { animation-delay: 150ms; }
                                    .delay-200 { animation-delay: 200ms; }
                                    .delay-250 { animation-delay: 250ms; }
                                    .delay-300 { animation-delay: 300ms; }
                                    .delay-350 { animation-delay: 350ms; }
                                    .delay-400 { animation-delay: 400ms; }
                                    .delay-450 { animation-delay: 450ms; }
                                    .delay-500 { animation-delay: 500ms; }
