:root {
    --social-bg: #ffffff;
    --social-color: #333333;
    --social-hover-color: #007bff;
    --social-shadow: rgba(0, 0, 0, 0.15);
}

body.dark {
    --social-bg: #121212;
    --social-color: #e0e0e0;
    --social-hover-color: #4dabf7;
    --social-shadow: rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--social-bg);
    color: var(--social-color);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background 0.5s ease, color 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center;
    will-change: transform, box-shadow, color;
}

.social-link:hover {
    background: var(--social-bg);
    color: var(--social-hover-color);
    box-shadow: var(--social-shadow) 0px 4px 8px;
}

@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}