  /* Pulse Animation */
        @keyframes pulse-ring {
            0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(103, 217, 201, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(103, 217, 201, 0); }
            100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(103, 217, 201, 0); }
        }
        .tech-pulse {
            animation: pulse-ring 3s infinite cubic-bezier(0.45, 0, 0.55, 1);
        }
        
        /* Glassmorphism Utilities */
        .glass-panel {
            background: rgba(23, 31, 51, 0.5);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(103, 217, 201, 0.15);
        }
        
        /* Grid Gradient Overlay */
        .bg-grid-pattern {
            background-image: 
                linear-gradient(to right, rgba(103, 217, 201, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(103, 217, 201, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        /* Ambient Glow */
        .ambient-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(103, 217, 201, 0.15) 0%, rgba(11, 19, 38, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        /* Public/assets/styleI.css */

/* QUITAR FONDO DEL LOGO */
.logo-no-bg {
    mix-blend-mode: screen;
    filter:
        contrast(1.2)
        brightness(1.1)
        drop-shadow(0 0 12px rgba(103, 217, 201, 0.35));
}

/* GRID */
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size: 40px 40px;
}

/* GLASS */
.glass-panel {
    background: rgba(23, 31, 51, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* AMBIENT */
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(103, 217, 201, 0.08);
    border-radius: 9999px;
    filter: blur(120px);
}

/* TECH PULSE */
.tech-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}