/* AFTER DWN - Social Icons */

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.social-icon {
    width: 22px;
    height: 22px;
    opacity: 0.85;
    filter: invert(1);
    position: relative;
}

/* Simple red glow on hover - no scaling or complex effects */
.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(232, 42, 42, 0);
    border-radius: 50%;
    transition: background-color 0.25s ease;
    z-index: -1;
}

.social-link:hover::after {
    background-color: rgba(232, 42, 42, 0.15);
    box-shadow: 0 0 10px 2px rgba(232, 42, 42, 0.2);
}

.social-link:hover .social-icon {
    opacity: 1;
}

.social-icon.glitch {
    animation: social-glitch 0.2s ease-in-out;
}

@keyframes social-glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); filter: hue-rotate(90deg); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, -1px); filter: hue-rotate(-90deg); }
    80% { transform: translate(1px, 1px); }
    100% { transform: translate(0); }
}
