/*
Theme Name: LewdNovels
Theme URI: https://lewdnovels.com
Description: LewdNovels brand child theme for nxp. Crimson-pink primary in place of the parent's blue, plus LewdNovels-only CSS.
Author: NXP Team
Author URI: https://lewdnovels.com
Template: nxp
Version: 1.0.0
Text Domain: lewdnovels-child
*/

/* ═══════════════════════════════════════════════════════════════
   LewdNovels palette

   The parent's style.css (handle: nxp-style) loads first, then this file
   (handle: lewdnovels-style), so these token redefinitions win at equal
   specificity — no !important needed.

   Only the brand-colour tokens are restated. Backgrounds, text, borders,
   spacing, radii and fonts are left to the parent so they keep tracking it.
   The parent defines --nxp-primary / --nxp-primary-dark exactly once, on
   :root, and never per theme mode — so the two lines below recolour dark,
   light, sepia and soft mode in one shot.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --nxp-primary:      #ed2553;   /* nhentai vivid crimson-pink */
  --nxp-primary-dark: #c71a42;   /* nhentai deep crimson hover */

  /* Glow tints are keyed off the primary (rgb: 237, 37, 83). The parent
     redefines --nxp-glow inside each theme-mode block, which out-specifies a
     bare :root rule — hence the per-mode overrides further down. */
  --nxp-glow:    rgba(237, 37, 83, 0.15);
  --shadow-glow: 0 0 30px rgba(237, 37, 83, 0.2);
}

/* Per-mode glow — mirrors the parent's own alpha for each mode
   (light is lighter, sepia/soft match dark's 0.15). */
html[data-theme="light"] { --nxp-glow: rgba(237, 37, 83, 0.10); }
html[data-theme="sepia"] { --nxp-glow: rgba(237, 37, 83, 0.15); }
html[data-theme="soft"]  { --nxp-glow: rgba(237, 37, 83, 0.15); }

/* ═══════════════════════════════════════════════════════════════
   Other LewdNovels-only CSS below.
   ═══════════════════════════════════════════════════════════════ */