.social-overlay {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: transparent;
    padding: 10px 5px;
    z-index: 10000;
}



.social-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #222;
    border-radius: 50%;
    color: #dfb84d;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(223, 184, 77, 0.5);
    transition: all 0.3s ease;
}

.social-overlay a:hover,
.social-overlay a:focus {
    background-color: #dfb84d;
    color: #121212;
    box-shadow: 0 0 20px rgba(223, 184, 77, 0.9);
    transform: scale(1.2);
    outline: none;
}


@media (max-width: 768px) {
    .social-overlay {
        flex-direction: row;
        bottom: 0;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 0;
        width: 100%;
        justify-content: center;
        gap: 30px;
        background-color: rgba(18, 18, 18, 0.95);
        border-radius: 10px 10px 0 0;
    }

    .social-overlay a {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}
