/* ================= FOOTER ================= */
footer {
    width: 100%;
    background: linear-gradient(to top, #09060fc9, #000000);
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.footer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
}

.footer-column p {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 0;
}

footer .copyright {
    font-size: 14px;
    color: #aaaaaa;
    margin-top: 10px;
}

/* DMCA badge styling */
.dmca-badge img {
    margin-top: 12px;
    max-width: 100px;
    height: auto;
}

/* ===================== FOOTER LINKS ===================== */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 600px) {
    .footer-wrapper {
        gap: 20px;
    }

    .dmca-badge img {
        max-width: 80px;
    }

    .footer-links {
        gap: 12px;
    }
}
