.mesh-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, #1e293b 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, #0f172a 0%, transparent 40%);
    z-index: -1;
}

/* Glass card effect similar to your old card hover */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #3b82f6;
    transform: translateX(8px); /* Subtle slide like your old hover */
}
