.social-bubble {
    position: absolute;
    top: 70vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 41;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    height: 50px;
    max-width: max-content;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    pointer-events: auto;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s;
    opacity: 0.85;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
    transition: fill 0.2s;
    pointer-events: none;
}
@media (max-width: 600px) {
    .social-bubble {
        bottom: 8%;
        gap: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}