/* Footer Styles */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 1.5rem 0;
    flex-shrink: 0;
    border-top: 2px solid var(--yellow);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
}

.footer-credit-link {
    color: var(--yellow);
    text-decoration: none;
}

.footer-credit-link:hover {
    text-decoration: underline;
}

.footer-platform-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-credit {
        font-size: 0.8rem;
    }
}
