/* Footer Social Icons Styles */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: #fff;
}

.footer-social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
}

.footer-social-link.youtube:hover {
    background: linear-gradient(135deg, #ff3333, #ff0000);
    box-shadow: 0 4px 12px rgba(255,0,0,0.4);
}

.footer-social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fccc63);
    border-color: #e4405f;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(135deg, #f56565, #9f7aea, #ffd93d);
    box-shadow: 0 4px 12px rgba(228,64,95,0.4);
}

.footer-social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    border-color: #0088cc;
}

.footer-social-link.telegram:hover {
    background: linear-gradient(135deg, #33a3dd, #4db8e8);
    box-shadow: 0 4px 12px rgba(0,136,204,0.4);
}

/* Responsive Styles */
@media (max-width: 576px) {
    .footer-social-icons {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}