:root {
    --nav-height: 64px;
}

/*-------------------------------------------------------------------------------------------------*/
/* Social button container */
/*-------------------------------------------------------------------------------------------------*/
.socials-fixed {
    position: static;
    z-index: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.55rem;
}

/*-------------------------------------------------------------------------------------------------*/
/* Social buttons */
/*-------------------------------------------------------------------------------------------------*/
.social-btn {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border: 2px solid currentColor;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(10, 10, 18, 0.78);
    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 platform colors */
/*-------------------------------------------------------------------------------------------------*/
.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);
}

/*-------------------------------------------------------------------------------------------------*/
/* Hover effects */
/*-------------------------------------------------------------------------------------------------*/
.social-btn:hover {
    transform: scale(1.12);
    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);
}

/*-------------------------------------------------------------------------------------------------*/
/* Small screens */
/*-------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1190px) {

    .socials-fixed {
        gap: 0.45rem;
    }

    .social-btn {
        --size: 36px;
    }

    .social-btn i {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {

    .socials-fixed {
        gap: 0.35rem;
    }

    .social-btn {
        --size: 34px;
    }

    .social-btn {
        --size: 34px;
    }
}

/*-------------------------------------------------------------------------------------------------*/
/* Very small screens */
/*-------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {

    .socials-fixed {
        gap: 0.25rem;
    }

    .social-btn {
        --size: 30px;
    }

    .social-btn i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 360px) {

    .social-btn {
        --size: 28px;
    }

    .social-btn i {
        font-size: 0.95rem;
    }
}