/* style.css */

/* Custom Utilities */
.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.blob {
    position: absolute;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.4;
    animation: move 10s infinite alternate;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -20px) scale(1.1); }
}