/* Smooth scrolling site-wide */
html {
  scroll-behavior: smooth;
}

/* Code input boxes — remove inner highlight on iOS */
.code-box {
  -webkit-tap-highlight-color: transparent;
  caret-color: #d4a843;
}

/* Spin animation for loading ring */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
