/* 
  Strict Technical Rules: 
  Responsive: Use max-width: 100% and box-sizing: border-box to ensure ZERO horizontal scrolling on all devices. 
*/

html, body {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* 
  The rest of the styling is handled by the Tailwind CSS CDN included in index.html,
  which ensures a highly optimized, responsive, and modern look while keeping the 
  file structure simple as requested.
*/