        /* Custom styles for the PDF/document effect */
        .screenshot-effect {
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
            border-radius: 12px;
            background: white;
        }
        
        /* Graph paper background */
        body {
            background-image: linear-gradient(#e5e7eb 1px, transparent 1px),
                              linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
            background-size: 20px 20px;
            background-color: #f9fafb;
            padding: 40px 20px;
        }
        
        .badge {
            position: absolute;
            width: 220px;
            text-align: center;
            font-weight: 300;
            letter-spacing: 4px;
            font-size: 20px;
            padding: 16px;
            box-shadow: 10px 10px 23px 0px rgba(0, 0, 0, 0.5);
            padding-left: 32px;
            background: rgb(59 92 118);
            color: #fff;
            transform: rotate(-45deg);
            left: -54px;
            top: 26px;            
        }

        .bg-echo-blue {
            background-color: rgb(59 92 118) !important;
        }

        .text-echo-blue {
            color: rgb(59 92 118) !important;
        }

        /* Mac-style window header */
        .traffic-lights-header {
            background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
            border-bottom: 1px solid #d0d0d0;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: relative;
        }
        
        .traffic-lights-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .traffic-light {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0.5px solid rgba(0,0,0,0.1);
            cursor: pointer;
        }
        
        .traffic-light.red {
            background: linear-gradient(to bottom, #ff5f57, #ff3b30);
        }
        
        .traffic-light.yellow {
            background: linear-gradient(to bottom, #ffbd2e, #ff9500);
        }
        
        .traffic-light.green {
            background: linear-gradient(to bottom, #28cd41, #34c759);
        }
        
        .traffic-light svg {
            width: 6px;
            height: 6px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .traffic-light:hover svg {
            opacity: 1;
        }
        
        .tab-filename {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 13px;
            font-weight: 500;
            color: #666;
            text-align: center;
            pointer-events: none;
            width: 100%;
            max-width: 200px;
        }
        
        @media (max-width: 768px) {
            .tab-filename {
                font-size: 11px;
                max-width: 180px;
                left: 50%;
                right: auto;
            }
            
            /* Reduce mobile font sizes for better screenshot theme experience */
            h1 {
                font-size: 2rem !important; /* was 2.25rem */
            }
            
            h2 {
                font-size: 1.875rem !important; /* was 2.25rem */
            }
            
            h3 {
                font-size: 1.5rem !important; /* was 1.875rem */
            }
            
            .text-xl {
                font-size: 1.125rem !important; /* was 1.25rem */
            }
            
            .text-lg {
                font-size: 1rem !important; /* was 1.125rem */
            }
            
            .main-headline {
                font-size: 2rem !important; /* was 2.25rem */
                line-height: 2.25rem !important;
            }
        }
        
        /* Animation for microinteractions */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        .hover-scale {
            transition: transform 0.3s ease;
        }
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        /* Custom scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Mobile menu styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            padding: 20px;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        .mobile-menu-links {
            margin-top: 60px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .mobile-menu-links a {
            padding: 15px 0;
            color: #333;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            border-bottom: 1px solid #eee;
            transition: color 0.3s ease;
        }
        
        .mobile-menu-links a:hover {
            color: #3b82f6;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 4px;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #666;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        /* Navigation link hover highlight effect - same as word highlights */
        .nav-highlight {
            position: relative;
            white-space: nowrap;
            display: inline-block;
        }
        
        .nav-highlight::before {
            content: "";
            position: absolute;
            height: 0.3em;
            width: 0;
            bottom: -0.1em;
            left: 0;
            background: rgba(232,181,25,0.4); /* Same 40% opacity yellow */
            z-index: 0;
            transform: rotate(-1deg);
            transition: width 1.5s cubic-bezier(0.25, 0.46, 0.135, 0.995);
        }
        
        .nav-highlight:hover::before {
            width: 100%;
        }
        





    @media (max-width: 767px) {

        body {
            padding: 20px;
        }

        .badge {
            padding: 8px;
            font-size: 14px;
            left: -74px;
            top: 6px;
        }

    }