﻿/* Footer Styles */
footer {
    background-color: #4c1d95;
}

.border-purple-800 {
    border-color: #5b21b6;
}

.text-purple-300 {
    color: #d8b4fe;
}

/* Социальные иконки */
.social-icon {
    transition: all 0.3s ease;
}

    .social-icon:hover {
        transform: translateY(-3px);
        background-color: #7e22ce;
    }
.highlight-social {
    animation: pulse 1.5s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}