
        body {
            font-family: 'Urbanist', sans-serif;
        }
        .glow-overlay {
            background: radial-gradient(circle at 50% -20%, rgba(191, 43, 56, 0.15) 0%, rgba(15, 15, 16, 0) 50%);
        }
        .logo-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .logo-card:hover {
            transform: scale(1.02);
            border-color: rgba(191, 43, 56, 0.4);
            background-color: rgba(191, 43, 56, 0.05);
        }
        .logo-card:hover img {
            filter: grayscale(0%) brightness(1.1);
        }
        .logo-img {
            filter: grayscale(100%) brightness(0.8);
            transition: all 0.3s ease;
        }
    
