.marquee-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
            background: #232323;
            padding: 2rem 0;
        }
        
        .marquee-content {
            display: flex;
            animation: scroll 25s linear infinite;
            width: fit-content;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        /*
        .marquee-wrapper:hover .marquee-content {
            animation-play-state: paused;
        }
        */
        /* Logo card styles */
        .logo-card {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: max-content;
            margin: 0 10px;
            padding: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            color: #c0ac72;
        }
        
        .logo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        /*
        .logo-card:hover::before {
            opacity: 1;
        }
        
        .logo-card:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Logo image styles */
        .logo-image {
            max-height: 60px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        /* Specific glow effects for each brand */
        .google-glow {
            box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
        }
        
        .google-glow:hover {
            box-shadow: 0 0 30px rgba(66, 133, 244, 0.5);
        }
        
        .tesla-glow {
            box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
        }
        
        .tesla-glow:hover {
            box-shadow: 0 0 30px rgba(231, 76, 60, 0.5);
        }
        
        .pinterest-glow {
            box-shadow: 0 0 20px rgba(189, 8, 28, 0.3);
        }
        
        .pinterest-glow:hover {
            box-shadow: 0 0 30px rgba(189, 8, 28, 0.5);
        }
        
        .facebook-glow {
            box-shadow: 0 0 20px rgba(66, 103, 178, 0.3);
        }
        
        .facebook-glow:hover {
            box-shadow: 0 0 30px rgba(66, 103, 178, 0.5);
        }
        
        .openai-glow {
            box-shadow: 0 0 20px rgba(16, 163, 127, 0.3);
        }
        
        .openai-glow:hover {
            box-shadow: 0 0 30px rgba(16, 163, 127, 0.5);
        }
        
        .microsoft-glow {
            box-shadow: 0 0 20px rgba(0, 120, 215, 0.3);
        }
        
        .microsoft-glow:hover {
            box-shadow: 0 0 30px rgba(0, 120, 215, 0.5);
        }
        
        .amazon-glow {
            box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
        }
        
        .amazon-glow:hover {
            box-shadow: 0 0 30px rgba(255, 153, 0, 0.5);
        }
        
        .twitter-glow {
            box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
        }
        
        .twitter-glow:hover {
            box-shadow: 0 0 30px rgba(29, 161, 242, 0.5);
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Ensure smooth animation */
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }