/* Footer Styles */

:root {
    --purple: #5B2EFF;
    --indigo: #3B1CFF;
    --neon-blue: #00CFFF;
    --dark-bg: #0E0F1A;
    --dark-secondary: #16172D;
    --dark-tertiary: #1F2141;
}

footer {
    background: linear-gradient(135deg, rgba(14, 15, 26, 0.9), rgba(91, 46, 255, 0.1));
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(91, 46, 255, 0.2);
    margin-top: 80px;
}

footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    color: #b0b0b0;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

footer .footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 207, 255, 0.5);
}

.footer-socials {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a:hover {
    background: var(--neon-blue);
    color: var(--dark-bg) !important;
    border-color: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.4);
    text-shadow: none !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
        margin-top: 60px;
    }

    footer p {
        font-size: 14px;
    }

    footer .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
