.floating-social {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-social-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    text-decoration: none;
    color: #ffffff;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition:
        width 0.25s ease,
        border-radius 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
    overflow: hidden;
}

.floating-social-btn svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.messenger-btn {
    background: linear-gradient(
        135deg,
        #00b2ff 0%,
        #006aff 50%,
        #9c3fff 100%
    );
}

.discord-btn {
    background: #5865f2;
}

.floating-label {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;

    font-size: 15px;
    font-weight: 700;

    transition:
        max-width 0.25s ease,
        opacity 0.2s ease,
        margin-left 0.25s ease;
}

.floating-social-btn:hover {
    width: 150px;
    border-radius: 30px;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.floating-social-btn:hover .floating-label {
    max-width: 100px;
    opacity: 1;
    margin-left: 9px;
}

.floating-social-btn:active {
    transform: scale(0.95);
}

@media (max-width: 640px) {
    .floating-social {
        right: 12px;
        bottom: 15px;
        gap: 9px;
    }

    .floating-social-btn {
        width: 50px;
        height: 50px;
    }

    .floating-social-btn svg {
        width: 26px;
        height: 26px;
    }

    .floating-social-btn:hover {
        width: 50px;
        border-radius: 50%;
    }

    .floating-social-btn:hover .floating-label {
        display: none;
    }
}