html {
    font-family: 'Rajdhani', sans-serif;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    background-color: #0a0a0f; 
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    filter: blur(150px); 
    pointer-events: none;
    transform: scale(1.2); 
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    mix-blend-mode: screen;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform; 
}

.blob-1 {
    background-color: #6d28d9; 
    width: 700px; height: 700px;
    left: -15%; top: -15%;
}

.blob-2 {
    background-color: #f59e0b; 
    width: 600px; height: 600px;
    right: -10%; bottom: -20%;
}

.blob-3 {
    background-color: #db2777; 
    width: 500px; height: 500px;
    left: 40%; top: 30%;
}

.content-scroll-wrapper {
    position: relative;
    z-index: 10;
}

#floating-tooltip.active {
    display: block;
    opacity: 1;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #374151; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #4b5563; }