/* 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)) !important;
    padding: 40px 50px !important;
    text-align: center !important;
    border-top: 1px solid rgba(91, 46, 255, 0.2) !important;
    margin-top: 80px !important;
}

footer p {
    color: #b0b0b0 !important;
    margin: 0 !important;
    font-size: 14px !important;
}

footer a {
    color: var(--neon-blue) !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
    margin: 0 8px !important;
}

footer a:hover {
    color: #0099cc !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 30px 20px !important;
    }

    footer p {
        font-size: 12px !important;
    }

    footer a {
        display: block !important;
        margin: 5px 0 !important;
    }
}
