/* theme-dark.css - Dark Theme (Default) */
/* The dark theme is the default - values are defined in tokens.css */
/* This file exists for consistency and potential dark-specific overrides */

/* Dark theme is applied by default via :root in tokens.css */
/* No class needed - this is the base state */
/* Use :not() selectors to avoid overriding other themes */

/* Player Cards - solid background for performance (dark theme only) */
body:not(.theme-kokoro):not(.theme-classic):not(.theme-light) .player-card {
  background: #1a1a24 !important;
  backdrop-filter: none !important;
}

body:not(.theme-kokoro):not(.theme-classic):not(.theme-light) .player-card.attackable:hover {
  background: #252530 !important;
}

body:not(.theme-kokoro):not(.theme-classic):not(.theme-light) .player-card.spectatable:hover {
  background: #2a3550 !important;
}

body:not(.theme-kokoro):not(.theme-classic):not(.theme-light) .player-card.being-attacked {
  background: #3a2020 !important;
  border-color: #cc4444 !important;
}

body:not(.theme-kokoro):not(.theme-classic):not(.theme-light) .player-card.attacking {
  background: #3a3020 !important;
  border-color: #cc8800 !important;
}

body:not(.theme-kokoro):not(.theme-classic):not(.theme-light) .player-card.dead {
  background: #1a1a1a !important;
}
