/* Custom fixes to hide the "Made with Manus" attribution */
[href*="Made with Manus"],
[href*="manus.space"],
a[href*="manus"],
a:has(> [data-testid="manus-attribution"]),
a:has(> [class*="manus"]),
a:has(> [class*="attribution"]),
a:has(> [class*="created-by"]),
a:has(> [class*="powered-by"]),
a:has(> [class*="built-with"]),
a:has(> [class*="made-with"]),
a:has(> [class*="created-with"]),
a:has(> [class*="powered-with"]),
a:has(> [class*="built-by"]),
a:has(> [class*="made-by"]) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
}

/* Hide any element with "Manus" in its text content */
*:contains("Made with Manus") {
    display: none !important;
}

/* Additional selectors to target the footer attribution */
.footer-attribution,
.site-attribution,
.site-credit,
.site-footer a[href*="manus"],
.site-footer-credit,
footer a[href*="manus"] {
    display: none !important;
}

/* Hide the specific element we identified */
a[href*="Create my website"] {
    display: none !important;
}
