/* ============================================
   FOOTER STYLES — Centered Layout
   ============================================ */

.footer {
    background: rgba(0, 0, 0, 0.92) !important;
    color: #999 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    padding: 50px 30px 40px 30px !important;
    margin: 60px auto 0 auto !important;
    width: 1200px !important;
    max-width: 95% !important;
    font-family: 'Rajdhani', 'PT Sans', sans-serif !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    display: block !important;
    text-align: center !important;
}

.footer .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    text-align: center !important;
}

/* ============ TOP ROW: LINKS (centered) ============ */
.footer .footer-links-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 0 25px 0 !important;
    text-align: center !important;
}

.footer .footer-links-row a {
    color: #999 !important;
    font-size: 0.8rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 0 14px !important;
    transition: color 0.2s !important;
    display: inline-block !important;
}

.footer .footer-links-row a:hover {
    color: #d4af37 !important;
}

.footer .footer-links-row .footer-sep {
    color: #444 !important;
    font-size: 0.8rem !important;
    padding: 0 !important;
    display: inline-block !important;
}

/* ============ DIVIDER ============ */
.footer .footer-divider {
    width: 100% !important;
    max-width: 900px !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    margin: 0 auto 25px auto !important;
    display: block !important;
}

/* ============ COPYRIGHT BLOCK (centered) ============ */
.footer .footer-copyright-block {
    display: block !important;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    padding: 0 !important;
    width: 100% !important;
}

.footer .footer-copyright-block p {
    color: #888 !important;
    font-size: 0.85rem !important;
    line-height: 1.7 !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: 1px !important;
    font-weight: 500 !important;
    text-align: center !important;
}

.footer .footer-copyright-block p a {
    color: #d4af37 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.footer .footer-copyright-line {
    color: #aaa !important;
    font-size: 0.9rem !important;
}

.footer .footer-webzen-line {
    color: #666 !important;
    font-size: 0.78rem !important;
    font-style: italic !important;
}

/* ============ SOCIALS ROW (centered) ============ */
.footer .footer-socials-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 25px auto !important;
    padding: 0 !important;
    width: 100% !important;
    flex-wrap: wrap !important;
}

.footer .footer-socials-row .footer-social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    line-height: 0 !important;
}

.footer .footer-socials-row .footer-social-link:hover {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.08) !important;
    transform: translateY(-2px) !important;
}

.footer .footer-socials-row .footer-social-link img {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    filter: grayscale(100%) brightness(1.6) !important;
    opacity: 0.75 !important;
    transition: all 0.3s !important;
    margin: 0 !important;
}

.footer .footer-socials-row .footer-social-link:hover img {
    filter: grayscale(0%) brightness(1) !important;
    opacity: 1 !important;
}

/* ============ ENGINE CREDIT (centered) ============ */
.footer .footer-engine-credit {
    display: block !important;
    text-align: center !important;
    padding-top: 15px !important;
    margin: 0 auto !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    width: 100% !important;
    max-width: 900px !important;
}

.footer .footer-engine-credit a,
.footer .footer-engine-credit .webengine-powered,
.footer .webengine-powered {
    color: #555 !important;
    font-size: 0.72rem !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: color 0.2s !important;
    display: inline-block !important;
}

.footer .footer-engine-credit a:hover,
.footer .footer-engine-credit .webengine-powered:hover,
.footer .webengine-powered:hover {
    color: #d4af37 !important;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px 20px !important;
    }

    .footer .footer-links-row a {
        padding: 0 8px !important;
        font-size: 0.7rem !important;
    }

    .footer .footer-links-row .footer-sep {
        padding: 0 !important;
    }

    .footer .footer-socials-row {
        gap: 8px !important;
    }

    .footer .footer-socials-row .footer-social-link {
        width: 36px !important;
        height: 36px !important;
    }

    .footer .footer-socials-row .footer-social-link img {
        width: 18px !important;
        height: 18px !important;
    }
}