/**
 * Wiyango Arena — genel tamamlayıcı stiller.
 * Ana arayüz stilleri templates/base.html içindeki <style> bloğunda tanımlıdır.
 */
:root {
  color-scheme: dark;
}

:focus-visible {
  outline: 2px solid rgba(0, 200, 255, 0.7);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

img,
video {
  max-width: 100%;
  height: auto;
}
