/*
  BestOixim Apps — custom.css
  Minimal overrides. Tailwind CDN handles the bulk.
  Add only what Tailwind CDN inline classes cannot express.
*/

/* Smooth age gate dismissal */
#age-gate {
  transition: opacity 0.2s ease;
}
#age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Cookie banner slide-in from bottom */
#cookie-banner {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
}

/* <details> chevron rotation handled via Tailwind group-open: in markup */

/* Scrollbar styling (Webkit) — subtle dark theme */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #fbbf24;
}

/* Focus visible ring — amber for brand consistency */
:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
  border-radius: 4px;
}
