/* =============================================================================
   DARK THEME OVERRIDES — CineVerse Asia
   Default is dark; these classes refine dark-only specifics
   ============================================================================= */

/* Dark theme is the default (see :root in base.css) */
/* These rules apply additional dark-only refinements */

[data-theme="dark"] {
  color-scheme: dark;
}

[data-theme="dark"] .site-header.is-transparent {
  background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, transparent 100%);
}

[data-theme="dark"] img {
  /* Prevent images from looking washed out in dark mode */
  filter: brightness(0.95) contrast(1.02);
}

/* Ensure proper rendering in dark mode */
[data-theme="dark"] .post-content code {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
}
