body {
    background-color: #f4f4f5;
    color: #0a0a0a;
    overflow-x: hidden;
}

#kinetic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

html {
    scroll-behavior: smooth;
}

.content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: #2563EB;
}

::selection {
    background: #2563EB;
    color: white;
}

.nav-blur {
    background: rgba(244, 244, 245, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.interactive-area {
    cursor: crosshair;
}
