@import 'components/base.css';
@import 'components/layout.css';
@import 'components/profile.css';
@import 'components/effects.css';

/* Neural Background & Bubble Effects */
.neural-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--bg);
}

.bulge-area {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.15s ease-out;
    background: radial-gradient(
        circle at center, 
        rgba(185, 136, 255, 0.05) 0%, 
        rgba(185, 136, 255, 0.02) 40%, 
        transparent 70%
    );
    backdrop-filter: blur(1px);
    box-shadow: 0 0 40px rgba(185, 136, 255, 0.2);
    mix-blend-mode: screen;
    will-change: transform, opacity;
    transform: translate(-200px, -200px) scale(0.9);
}

