/*!
 * StreamWave Base Styles v2.4.1
 * Design system tokens and utility classes
 */

/* Design tokens */
:root {
  --sw-radius-sm: 4px;
  --sw-radius-md: 8px;
  --sw-radius-lg: 12px;
  --sw-transition-fast: 150ms ease;
  --sw-transition-base: 250ms ease;
  --sw-shadow-card: 0 2px 12px rgba(0,0,0,.4);
  --sw-shadow-overlay: 0 8px 32px rgba(0,0,0,.6);
}

/* Utility classes */
.sw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sw-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sw-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a4a; }

/* Focus ring */
:focus-visible {
  outline: 2px solid rgba(232,54,93,.7);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: rgba(232,54,93,.25);
  color: inherit;
}
