        :root {
            --red: #E50914;
            --red-dark: #B81D24;
            --ink: #0a0a0a;
            --ice: #F5F5F1;
            --glow: rgba(229, 9, 20, 0.6);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--ink);
            overflow-x: hidden;
        }

        /* ===== Ultra Modern Clients Section ===== */
        .clients-section {
            position: relative;
            padding: 20px 0;
            background: linear-gradient(180deg, #000000 0%, var(--ink) 50%, #000000 100%);
            overflow: hidden;
        }

        /* Animated Background Grid */
        .clients-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(229, 9, 20, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(229, 9, 20, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            opacity: 0.3;
            pointer-events: none;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Floating particles */
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--red);
            border-radius: 50%;
            opacity: 0;
            animation: float 15s infinite;
            box-shadow: 0 0 10px var(--glow);
        }

        @keyframes float {
            0%, 100% { opacity: 0; transform: translateY(0) translateX(0); }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px); }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Title with clean design - NO glitch effect */
        .clients-title {
            text-align: center;
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--ice);
            letter-spacing: -1px;
            position: relative;
        }

        .clients-subtitle {
            text-align: center;
            color: rgba(245, 245, 241, 0.5);
            font-size: 14px;
            margin-bottom: 60px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 300;
        }

        /* Auto-scrolling carousel wrapper */
        .carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }

        /* Gradient fade edges */
        .carousel-wrapper::before,
        .carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 200px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .carousel-wrapper::before {
            left: 0;
            background: linear-gradient(90deg, var(--ink) 0%, transparent 100%);
        }

        .carousel-wrapper::after {
            right: 0;
            background: linear-gradient(270deg, var(--ink) 0%, transparent 100%);
        }

        /* Auto-scrolling track */
        .clients-track {
            display: flex;
            gap: 60px;
            animation: scroll 15s linear infinite;
            width: max-content;
        }

        .clients-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Individual Logo Card */
        .client-logo {
            position: relative;
            width: 220px;
            height: 160px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(229, 9, 20, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            flex-shrink: 0;
        }

        /* Animated border gradient */
        .client-logo::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, 
                transparent, 
                var(--red), 
                transparent, 
                var(--red-dark), 
                transparent
            );
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: borderRotate 4s linear infinite;
            z-index: -1;
        }

        @keyframes borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .client-logo::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--ink);
            border-radius: 20px;
            z-index: -1;
        }

        .client-logo:hover::before {
            opacity: 1;
        }

        .client-logo:hover {
            transform: translateY(-10px) scale(1.05);
            border-color: var(--red);
            box-shadow: 
                0 20px 60px rgba(229, 9, 20, 0.3),
                0 0 40px rgba(229, 9, 20, 0.2),
                inset 0 0 40px rgba(229, 9, 20, 0.05);
            background: rgba(229, 9, 20, 0.05);
        }

        /* Ripple effect on hover */
        .client-logo .ripple {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
            background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
            opacity: 0;
            pointer-events: none;
        }

        .client-logo:hover .ripple {
            animation: rippleEffect 1s ease-out;
        }

        @keyframes rippleEffect {
            to {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        .client-logo img {
            width: 140px;
            height: auto;
            position: relative;
            z-index: 1;
            filter: grayscale(100%) brightness(60%) contrast(1.2);
            opacity: 0.7;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-logo:hover img {
            filter: grayscale(0%) brightness(110%) contrast(1.1);
            opacity: 1;
            transform: scale(1.15);
        }

        /* Scan line effect */
        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--red), 
                transparent
            );
            opacity: 0;
            animation: scan 3s ease-in-out infinite;
        }

        @keyframes scan {
            0%, 100% { top: 0; opacity: 0; }
            50% { top: 100%; opacity: 0.3; }
        }

        .client-logo:hover .scan-line {
            opacity: 0.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .clients-section {
                padding: 40px 0;
            }

            .clients-subtitle {
                margin-bottom: 40px;
            }

            .clients-track {
                gap: 30px;
            }

            .client-logo {
                width: 180px;
                height: 130px;
                padding: 30px;
            }

            .client-logo img {
                width: 100px;
            }

            .carousel-wrapper::before,
            .carousel-wrapper::after {
                width: 100px;
            }
        }

        @media (max-width: 480px) {
            .clients-track {
                gap: 20px;
            }

            .client-logo {
                width: 150px;
                height: 110px;
                padding: 25px;
            }

            .client-logo img {
                width: 80px;
            }
        }

        .clients-section .carousel-wrapper {
        width: 100vw;                 /* full viewport width */
        margin-left: 50%;
        transform: translateX(-50%);  /* center relative to section */
        }

        /* Slimmer logo cards */
        .client-logo {
        width: 220px;          /* a bit wider for long logos */
        height: 110px;         /* thinner height */
        padding: 24px 32px;    /* less padding inside */
        border-radius: 18px;
        }

        /* Match rounded corners for inner layers */
        .client-logo::before,
        .client-logo::after {
        border-radius: 18px;
        }

        /* Slightly smaller logos so they breathe */
        .client-logo img {
        max-width: 100px;
        }

        /* Optional: slightly smaller gap between cards */
        .clients-track {
        gap: 40px;
        }
