/* Enhanced CSS to hide the "Made with Manus" attribution */
.manus-attribution,
[class*="manus"], 
[id*="manus"],
a[href*="manus"],
a[href*="Create my website"],
a:has(img[alt*="manus"]),
a:has(span:contains("Made with")),
div:has(> a[href*="manus"]),
div[class*="attribution"],
div[class*="credit"],
div[class*="powered"],
.footer-attribution,
.site-attribution,
.platform-attribution,
.credit-link,
.powered-by {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: -9999 !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
}

/* Target the specific element seen in the browser */
a[href*="Made with Manus"],
a:contains("Made with Manus"),
*:contains("Made with Manus") {
    display: none !important;
    visibility: hidden !important;
}

/* Add custom footer to replace the platform footer */
body::after {
    content: "";
    display: block;
    height: 20px;
    background-color: #0A2E1C;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
}
