/* Custom CSS to hide Manus attribution and fix mobile scrolling */

/* Hide Manus attribution */
[href*="manus"], 
a[href*="manus"],
a[href*="Create my website"],
a:has(img[alt*="Manus"]),
img[alt*="Manus"],
a:has(svg[*="Manus"]) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Fix mobile scrolling issues */
html, body {
  height: auto !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  position: relative !important;
}

.details-container {
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh !important;
}

.details-container::before {
  position: fixed !important;
}

.splash-container {
  overflow: auto !important;
}

/* Ensure all sections are scrollable */
section {
  overflow: visible !important;
}

/* Fix for iOS devices */
* {
  -webkit-overflow-scrolling: touch !important;
}
