.main-footer {
    background-color: #0d0d0d;
    border-top: 2px solid #00ff88;
    padding: 1.5rem 2rem;
    font-family: 'Orbitron', sans-serif;
    color: #f0f0f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-icons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f0f0f0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icons a:hover {
    transform: scale(1.05);
    color: #00ffaa;
}

.footer-icons img {
    width: 30px;
    height: 30px;
    filter: none;
}

.footer-text {
    font-size: 1rem;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-icons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-icons img {
        width: 40px;
        height: 40px;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-icons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-icons a {
        font-size: 0.9rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-icons img {
        width: 40px;
        max-width: 10vw;
        height: auto;
    }


    .footer-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-icons img {
        max-width: 12vw;
    }
}
