.label-box {
    display: flex;
    padding: 2vh 5vw;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.label-box .box {
    min-width: 40%;
    max-width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10vh 0;
}

.box h3 {
    font-weight: 300;
    text-transform: uppercase;
}

.box h1 {
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 220%;
    margin-top: -25px;
}

.box p {
    font-weight: 300;
    font-size: 100%;
}

.box img {
    width: 80%;
    border-radius: 8px;
    filter: drop-shadow(4px 4px 8px black)
}

.btn-container {
    display: flex;
    gap: 1vw;
}

.l-btn {
    padding: 10px 25px;
    background: rgb(0, 0, 0, 0.4);
    border-radius: 8px;
    margin-top: 10px;
    text-transform: uppercase;
    transition: 0.2s;
    color: white;
    text-decoration: none;
}

.l-btn:hover, .l-btn.docs-btn:hover {
    cursor: pointer;
    background: rgba(185, 41, 185, 0.4);
}

.l-btn.docs-btn {
    background: rgba(255, 255, 255, 0.05);
}

.label-box.smaller {
    max-height: 30vh;
}

.label-box.smaller .box img {
    width: 50%;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Kluczowe: tło pod UI */
    pointer-events: none; /* Ignoruje myszkę, by nie blokować przycisków */
    background: radial-gradient(circle at top right, #1a0a1a, #0c0c0c);
}

.fade-up {
    opacity: 0;
    scale: 0.9;
    filter: blur(4px);
    transition: all 0.6s ease-out;
    will-change: filter, opacity, scale;
}

.fade-up.visible {
    opacity: 1;
    scale: 1;
    filter: blur(0px);
    transition: all 0.6s ease-out;
}

.links-container {
    display: flex;
    gap: 1vw;
}

.link-btn {
    color: white;
    text-decoration: none;
    padding: 1vh 0.5vw;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 0px solid rgba(0, 0, 0, 0);
    transition: 0.2s;
    scale: 1;
}

.link-btn:hover {
    scale: 1.05;
}

.link-btn.b-github:hover {
    border-left: 3px solid rgb(0, 89, 255);
}
.link-btn.b-discord:hover {
    border-left: 3px solid rgb(89, 0, 255);
}

@media (max-width: 768px) {
    .label-box {
        flex-direction: column;
        margin: 5vh;
    }

    .box {
        width: 100%;
        max-height: 30vh;
    }

    .smaller .box img {
        width: 80% !important;
    }

    .label-box.smaller {
    max-height: none;
}
}