/* ============================================================
   RepackGames Child — dark-mode.css
   Dark is default. Light mode toggle.
   ============================================================ */

body.rg-light {
  --rg-bg:           #ffffff;
  --rg-bg-alt:       #f5f5f5;
  --rg-card:         #ffffff;
  --rg-card-hover:   #fafafa;
  --rg-border:       #e0e0e0;
  --rg-text:         #1a1a1a;
  --rg-text-muted:   #666;
  --rg-link:         #1a1a1a;
  --rg-link-hover:   #e85d04;
}

body.rg-light .rg-card,
body.rg-light .rg-section-content,
body.rg-light .rg-side-box,
body.rg-light .rg-cat-card {
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--rg-border);
}

body.rg-light .rg-site-header { background: #fff; }
body.rg-light .rg-site-footer { background: #f0f0f0; }
body.rg-light .rg-meta-bar { background: #fff5ed; }
body.rg-light .rg-faq-item { background: #fafafa; }

/* Dark-mode toggle icon switching (default dark theme = show MOON to switch to light) */
.rg-dark-toggle .rg-icon-sun  { display: none; }
.rg-dark-toggle .rg-icon-moon { display: inline-block; }
body.rg-light .rg-dark-toggle .rg-icon-sun  { display: inline-block; }
body.rg-light .rg-dark-toggle .rg-icon-moon { display: none; }
