/* ============================================
   FOOTER
   Matches YT AE website theme
============================================ */

.footer {
    background: var(--bg-color, #080808);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f10000;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Fix for year span color */
.footer-copyright .footer-year,
.footer-copyright span {
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .footer-links {
        gap: 10px 15px;
    }
    
    .footer-links a {
        font-size: 11px;
    }
    
    .footer-copyright {
        font-size: 10px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}