@font-face {
  font-family: 'TildaSans';
  font-display: swap;
}

/* Prevent horizontal scrolling on mobile */
body {
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

/* Ensure all elements fit within viewport */
* {
  max-width: 100vw;
}

/* Fix for Zero Block and other containers */
.t-container,
.t-width,
[class*='t-col'] {
  max-width: 100% !important;
  overflow-x: hidden;
}

/* Additional mobile fixes */
@media (max-width: 640px) {
  body, html {
    width: 100%;
    max-width: 100%;
  }
  
  img,
  iframe,
  video,
  .t-content,
  .t-align_center {
    max-width: 100% !important;
    height: auto !important;
  }
}