/* Global Background Shapes */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    transition: background-color var(--transition-speed);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--blob-color-1);
    top: -100px;
    right: -100px;
    animation: move-1 20s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--blob-color-2);
    bottom: -50px;
    left: -50px;
    animation: move-2 25s infinite alternate;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--blob-color-3);
    top: 40%;
    left: 20%;
    animation: move-3 15s infinite alternate;
}

@keyframes move-1 {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 100px); }
}

@keyframes move-2 {
    from { transform: translate(0, 0); }
    to { transform: translate(150px, -100px); }
}

@keyframes move-3 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-50px, 50px) scale(1.2); }
}

/* Page Specific Blobs (from Home.razor) */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.cv-wrapper .blob-1 {
    width: 500px;
    height: 500px;
    background: var(--blob-color-1);
    top: -100px;
    left: -100px;
}

.cv-wrapper .blob-2 {
    width: 400px;
    height: 400px;
    background: var(--blob-color-2);
    bottom: 20%;
    right: -50px;
    animation-delay: -2s;
}

.cv-wrapper .blob-3 {
    width: 300px;
    height: 300px;
    background: var(--blob-color-3);
    bottom: -50px;
    left: 30%;
    animation-delay: -4s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}
