body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fafafa;
    font-family: sans-serif;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    filter: blur(80px);
}

.glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 35s infinite ease-in-out alternate;
}

.glow-1 {
    width: 90vw;
    height: 90vw;
    background: radial-gradient(circle, #f0f4ff, transparent 70%);
    top: -30vw;
    left: -20vw;
    animation-duration: 20s;
}

.glow-2 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #fff0f5, transparent 70%);
    bottom: -15vw;
    right: -10vw;
    animation-duration: 28s;
    animation-delay: -5s;
}

.glow-3 {
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, #fdf5e6, transparent 70%);
    top: 30vh;
    left: 30vw;
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5vw, 5vh) scale(1.05);
    }
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: url('data:image/svg+xml;utf8,<svg width="2" height="2" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(0,0,0,0.5)"/></svg>') 1 1, auto;
}

.links-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    pointer-events: none;
}

.button-link {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: none;
    border: none;
    text-decoration: none;
    cursor: url('data:image/svg+xml;utf8,<svg width="2" height="2" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(0,0,0,0.5)"/></svg>') 1 1, pointer;
}

.button-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}