footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #111;
    color: #aaa;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    height: 60px;
}

body {
    padding-bottom: 60px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-left img {
    max-width: 30px;
    height: auto;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    text-decoration: none;
    font-size: 14px;
    color: #00ffcc;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00e6b3;
}

@media (max-width: 768px) {
    footer {
        padding: 10px 15px;
        height: 50px;
    }
    .footer-left img {
        max-width: 25px;
    }
    .footer-left p {
        font-size: 13px;
    }
    .footer-nav {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding: 5px 0;
        -webkit-overflow-scrolling: touch;
    }
    .footer-nav a {
        white-space: nowrap;
        font-size: 13px;
        padding: 4px 8px;
    }
    .footer-nav::-webkit-scrollbar {
        height: 3px;
    }
    .footer-nav::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.2);
        border-radius: 1.5px;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 8px 10px;
        height: 45px;
    }
    .footer-left img {
        max-width: 22px;
    }
    .footer-left p {
        font-size: 12px;
    }
    .footer-nav {
        gap: 10px;
    }
    .footer-nav a {
        font-size: 12px;
        padding: 3px 6px;
    }
}
