body {
    font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    overflow-x: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.blob1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    top: -100px;
    left: -100px;
}

.blob2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

.blob3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.navbar {
    background: rgba(22, 33, 62, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: #e2e8f0 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea !important;
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(15,23,42,0.5);
}
::-webkit-scrollbar-thumb {
background: rgba(99,102,241,0.6);
border-radius: 999px;
}
