@tailwind base;
@tailwind components;
@tailwind utilities;
html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background-attachment: fixed;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.iconify {
  display: inline-flex;
  vertical-align: middle;
  line-height: 0;
}
:focus {
  outline: none;
}
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  border-radius: 0.375rem;
}
button, a[role="button"] {
  cursor: pointer;
}
.container {
  width: 100%;
}
.hidden-scroll {
  overflow: hidden;
}
.fixed-bottom-toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.48);
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
@layer components {
  .rounded-2xl { border-radius: 1rem; }
  .shadow-md { box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06); }
  .shadow-lg { box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08); }
}
