.footer {
    background: #000000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    position: relative;
    z-index: 2000;
    margin-top: 40px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: #FF8C00;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary, #cccccc);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: #FF8C00;
}

.footer-text {
    color: var(--text-muted, #666666);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-brand {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-links {
        gap: 15px;
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-text {
        font-size: 0.75rem;
    }
}

