/* Player Hub — estilos complementares ao Tailwind (via CDN). */

html {
  scrollbar-color: #232733 #0a0b0f;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0b0f; }
::-webkit-scrollbar-thumb { background: #232733; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #2c3140; }

:focus-visible {
  outline: 2px solid #d4a531;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .hub-fade-in {
    animation: hub-fade-in .25s ease-out;
  }
}

@keyframes hub-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
