/* ─── Footer ─── */
.site-footer {
    background-color: #111111;
    padding: 30px 0 25px;
    text-align: center;
    border-top: 4px solid #2a2a2a;
}

.footer-divider {
    width: 80px;
    height: 4px;
    margin: 0 auto 20px;
    background-color: #3a3a3a;
}

/* Mejora progresiva: renderizado pixelado para estética Minecraft */
@supports (image-rendering: pixelated) {
    .footer-divider {
        image-rendering: pixelated;
    }
}

.footer-text {
    font-family: 'minecraft_seven_v2', cursive;
    font-size: 0.7rem;
    color: #888888;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

@supports (font-size: clamp(1rem, 2vw, 3rem)) {
    .footer-text {
        font-size: clamp(0.55rem, 1.2vw, 0.75rem);
    }
}

.footer-text strong {
    color: #5cb85c;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .site-footer {
        padding: 25px 0 20px;
        border-top-width: 3px;
    }

    .footer-divider {
        width: 60px;
        height: 3px;
        margin-bottom: 16px;
    }

    .footer-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 0 16px;
        border-top-width: 2px;
    }

    .footer-divider {
        width: 50px;
        height: 2px;
        margin-bottom: 12px;
    }

    .footer-text {
        font-size: 0.55rem;
        line-height: 1.7;
    }
}
