/* Social Media Icons Styles */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 5px 0 10px;
}

.social-icons a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0 0%, #00f2fe 100%);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px var(--glow);
}

.social-icons a.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #c31432 100%);
}

.social-icons a.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #1c92d2 100%);
}

.social-icons a.tiktok {
    background: linear-gradient(135deg, #000000 0%, #8d898a 100%);
}

.social-icons a.facebook {
    background: linear-gradient(135deg, #0306b2 0%, #00c6fb 100%);
}

.social-icons a.instagram {
    background: linear-gradient(135deg, #fd5949 0%, #d6249f 50%, #285AEB 100%);
}

.social-icons a.threads {
    background: linear-gradient(135deg, #242323 0%, #333333 100%);
}

.social-icons a.x {
    background: linear-gradient(135deg, #2e2b2b 0%, #333333 100%);
}

.social-icons a.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}

.social-icons a.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icons a.github {
    background: linear-gradient(135deg, #333 0%, #6e5494 100%);
}

.social-icons a.reddit {
    background: linear-gradient(135deg, #FF4500 0%, #FF8700 100%);
}

.social-icons a.aboutme {
    background: linear-gradient(135deg, #00A98F 0%, #29d9c2 100%);
}

.social-icons a:hover {
    transform: scale(1.13) rotate(-6deg);
    box-shadow: 0 4px 16px var(--glow);
    color: #fff;
    filter: brightness(1.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
        margin: 20px 0 10px;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .social-icons a {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .social-icons a {
        min-height: 44px;
        min-width: 44px;
    }

    .social-icons a:hover {
        animation: none;
        transform: none;
    }
}