.socials-fixed {
    position: fixed;
    z-index: 2002;
    top: 12px;
    left: 12px;

    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.social-btn {
    --size: 42px;

    width: var(--size);
    height: var(--size);
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(10, 10, 18, 0.78);
    border: 2px solid currentColor;
    color: white;

    text-decoration: none;
    cursor: pointer;

    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.65),
        inset 0 0 10px rgba(255, 255, 255, 0.08);

    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn.website {
    color: rgb(0, 140, 255);
}

.social-btn.twitch {
    color: rgb(145, 70, 255);
}

.social-btn.youtube {
    color: rgb(255, 40, 40);
}

.social-btn.instagram {
    color: rgb(255, 60, 180);
}

.social-btn:hover {
    background: rgba(20, 20, 35, 0.92);
    box-shadow:
        0 0 12px currentColor,
        0 0 24px currentColor,
        0 0 12px rgba(0, 0, 0, 0.7);
}

.social-btn.website:hover {
    transform: scale(1.12) rotate(-10deg);
}

.social-btn.twitch:hover {
    transform: scale(1.12) rotate(10deg);
}

.social-btn.youtube:hover {
    transform: scale(1.12) rotate(-10deg);
}

.social-btn.instagram:hover {
    transform: scale(1.12) rotate(10deg);
}

@media (max-width: 600px) {
    .socials-fixed {
        display: none;
    }
}