

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #0b0500;
  color: #f9f9f9;

  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;  margin: 0;
  padding: 0;

  a {
    color: #f9f9f9;
    text-decoration: none;
  }

  html, body, #root {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  @media only screen and (min-width: 768px) {
    body {
      font-size: 16px;
    }
  }
  @media only screen and (min-width: 480px) and (max-width: 768px) {
    body {
      font-size: 15px;
    }
  }
  @media only screen and (max-width: 479px) {
    body {
      font-size: 14px;
    }
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .blurred-skeleton {
    filter: blur(12px);
    transition: filter 0.4s ease-out;
  }
}

/* ✅ Fix iOS tap weirdness */
button, a, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* If any overlay exists, make sure it doesn't steal taps */
.studioOverlay,
.studioShade,
.studioBackdrop {
  pointer-events: none;
}
