/* ByteBlast: dark theming now lives in style.css (token-based).
   This file only handles the logo swap + theme-toggle icon state. */

/* Logo variants */
#logo .logo-dark{ display:none; }
html[data-theme="dark"] #logo .logo-light{ display:none; }
html[data-theme="dark"] #logo .logo-dark{ display:inline-block; }

/* Theme-toggle icon (sun/moon) */
.bb-theme-toggle .bb-sun{ display:none; }
html[data-theme="dark"] .bb-theme-toggle .bb-moon{ display:none; }
html[data-theme="dark"] .bb-theme-toggle .bb-sun{ display:inline-block; }
