/* ===========================================================
   KaspaNova UI System – v2
   Style fintech sombre, Web3 premium, pro & sobre
   =========================================================== */

/* ---------- VARIABLES ---------- */

:root {
  --turquoise: #26e0bf;
  --purple: #814eff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --transition-fast: 0.25s ease;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ---------- THEMES ---------- */

body[data-theme="dark"] {
  --bg: #050509;
  --bg-elevated: #111119;
  --bg-subtle: #181824;
  --border-subtle: #26263a;

  --text-main: #f5f5ff;
  --text-muted: #a6a6c3;

  --accent: #26e0bf;
  --accent-soft: rgba(38, 224, 191, 0.12);
  --accent-strong: rgba(38, 224, 191, 0.26);
}

body[data-theme="light"] {
  --bg: #f5f6ff;
  --bg-elevated: #f0f2ff; /* CARTES CLAIRES VISIBLES */
  --bg-subtle: #e7e9fb;
  --border-subtle: #c4c7e6;

  --text-main: #1a1a2b;       /* TEXTE BIEN LISIBLE */
  --text-muted: #5a5a78;

  --accent: #5a4bff;
  --accent-soft: rgba(90, 75, 255, 0.12);
  --accent-strong: rgba(90, 75, 255, 0.22);
}


/* ---------- GLOBAL ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151525 0, #050509 50%, #020207 100%);
  color: var(--text-main);
  transition: background 0.5s ease, color 0.25s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- LAYOUT ---------- */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 18px 16px 32px;
  }
}

/* ---------- HEADER ---------- */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 14px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, #1f1f30, #050509);
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-title {
  display: flex;
  flex-direction: column;
}

.header-title h1 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.header-title span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- THEME TOGGLE ---------- */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.theme-toggle__track {
  width: 52px;
  height: 26px;
  border-radius: 999px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 2px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.theme-toggle__thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  transform: translateX(0);
  transition: transform var(--transition-fast);
}

body[data-theme="light"] .theme-toggle__thumb {
  transform: translateX(24px);
}

.theme-toggle__icons {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 6px;
  font-size: 0.76rem;
  pointer-events: none;
}

.theme-toggle__icon {
  opacity: 0.35;
  transition: opacity var(--transition-fast);
}

body[data-theme="dark"] .theme-toggle__icon--moon {
  opacity: 1;
}

body[data-theme="dark"] .theme-toggle__icon--sun {
  opacity: 0.25;
}

body[data-theme="light"] .theme-toggle__icon--sun {
  opacity: 1;
}

body[data-theme="light"] .theme-toggle__icon--moon {
  opacity: 0.25;
}

/* ---------- LANGUAGE PILLS ---------- */

.lang-switcher {
  display: inline-flex;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pill--active {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- CARDS ---------- */

.card {
  background: radial-gradient(circle at top left, rgba(129, 78, 255, 0.14), transparent 55%),
    var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.card p,
.card li {
  color: var(--text-muted);
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #4a8cff);
  color: #050509;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

/* ---------- HERO SECTION ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-main-title {
  font-size: 2.35rem;
  line-height: 1.15;
  margin: 6px 0 10px;
}

.hero-main-title span.kas {
  color: var(--accent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-subline {
  margin-top: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ---------- PAYMENT DEMO CARD ---------- */

.payment-demo {
  background: radial-gradient(circle at top right, rgba(129, 78, 255, 0.35), transparent 60%),
    radial-gradient(circle at bottom left, rgba(38, 224, 191, 0.3), transparent 55%),
    #151525;
  border-radius: 24px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: rgba(244, 244, 255, 0.86);
}

.badge-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 31, 11, 0.9);
  color: #5ff593;
  font-size: 0.75rem;
}

.payment-demo-amount {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.payment-demo-amount-main {
  font-size: 1.5rem;
  font-weight: 600;
}

.payment-demo-amount-sub {
  font-size: 0.82rem;
  opacity: 0.9;
}

.payment-demo-tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(8, 8, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-demo-address {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.8rem;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(2, 3, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 8px;
}

.payment-demo-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  margin-top: 8px;
}

.payment-demo-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7dfad1;
}

.payment-demo-label {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(243, 244, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- GRID SECTION ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ---------- ICONS INLINE ---------- */

.icon-inline {
  margin-right: 6px;
  font-size: 0.95em;
}

/* ---------- PAYMENT PREVIEW (PAGE /pay) ---------- */

.payment-preview {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border-subtle);
}

.payment-address {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

.timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}

/* ---------- FOOTER ---------- */

.site-footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-kaspa {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-kaspa img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
/* ===========================================================
   Custom styling for $KAS link (KaspaNova signature style)
   Color: #70C7BA
   =========================================================== */

.kas-link {
  font-style: italic !important;
  color: #70C7BA !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.kas-link:hover {
  color: #8cdcd2 !important;
  text-shadow: 0 0 6px rgba(112, 199, 186, 0.55);
  text-decoration: underline;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.status-pill--pending {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.status-pill--confirmed {
  background: rgba(112, 199, 186, 0.16);
  color: #70C7BA;
  box-shadow: 0 0 14px rgba(112, 199, 186, 0.6);
}

.status-pill--underpaid {
  background: rgba(255, 193, 7, 0.16);
  color: #f9c851;
}

.status-pill--expired {
  background: rgba(244, 67, 54, 0.16);
  color: #ff6b6b;
}
.logo-big {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #49EACB44;
  box-shadow: 0 0 12px #49EACB22;
}

.brand-title {
  font-size: 32px;
  font-weight: 900;
}
.payment-demo.compact {
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1e23, #111318);
  box-shadow: 0 0 20px rgba(112, 199, 186, 0.12);
  width: 350px;
  min-height: auto;
}

.payment-demo-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.payment-demo-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.payment-demo-amount-main {
  font-size: 24px;
  font-weight: 700;
}

.payment-demo-amount-sub {
  font-size: 14px;
  opacity: 0.75;
}

.payment-demo-tag {
  background: #353945;
  color: #c7c7c7;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.payment-demo-address {
  background: #1d2024;
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}

.compact-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.8;
}
/* ==== HEADER GENERAL ==== */
.animated-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(10, 12, 14, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.35s ease, border-color 0.35s ease;
}

/* ==== LOGO ANIMÉ ==== */
.header-logo-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle, #70C7BA55 0%, transparent 60%);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: headerGlow 4s infinite ease-in-out alternate;
}

.header-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  animation: slowRotate 14s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes headerGlow {
  from { box-shadow: 0 0 8px #70C7BA33; }
  to   { box-shadow: 0 0 22px #70C7BA99; }
}

/* ==== TITRE AVEC COULEURS ==== */
.brand-title {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-kas { color: #70C7BA; }
.brand-nova { color: #a562ea; } /* violet logo */
.brand-io { color: #49EACB; }

.brand-sub {
  font-size: 13px;
  opacity: 0.7;
}

/* ==== THEME TOGGLE ==== */
.theme-toggle {
  width: 54px;
  height: 28px;
  border-radius: 22px;
  background: #1d1f22;
  position: relative;
  cursor: pointer;
  border: 1px solid #333;
  transition: background 0.3s ease;
  margin-right: 14px;
}

.toggle-circle {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

[data-theme="light"] .toggle-circle {
  transform: translateX(26px);
}

.toggle-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 6px;
  font-size: 14px;
  opacity: 0.6;
}

/* ==== LANG FLAG ==== */
.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-flag {
  font-size: 20px;
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lang-flag:hover {
  opacity: 1;
  transform: scale(1.13);
}

.lang-active {
  opacity: 1;
}
/* ==== Ajustements header branding ==== */
.header-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(73, 234, 203, 0.35);
  background: radial-gradient(circle at top, #1f1f30, #050509);
  box-shadow: 0 0 18px rgba(73, 234, 203, 0.25);
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-kas { color: #70C7BA; }
.brand-nova { color: #a562ea; } /* mauve du logo */
.brand-io { color: #49EACB; }

/* ==== Icônes Lucide ==== */
.lucide {
  font-size: 1rem;
  vertical-align: -0.15em;
}

.icon-inline {
  margin-right: 6px;
  font-size: 0.95em;
}

/* Hero badge & icônes dans les titres */
.hero-badge i,
.card h3 i,
.payment-demo-header i,
.payment-demo-footer i {
  color: #70C7BA;
}

/* Réduction de la hauteur de la carte démo (compact) */
.payment-demo.compact {
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1b1e23, #111318);
  box-shadow: 0 0 20px rgba(112, 199, 186, 0.12);
  min-height: auto;
}

.payment-demo-address {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* ===========================================================
   FIX + NEW COMPONENTS : Payment Card Premium
   Stripe-style / KaspaNova branding
   =========================================================== */

/* Ligne séparatrice */
.divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

/* Carte premium */
.payment-card {
  background: linear-gradient(135deg, #1c1e27, #111319);
  border-radius: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(112, 199, 186, 0.08);
}

/* Section interne (grid flexible) */
.payment-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.payment-section.space-between {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Montants */
.fiat-amount {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.kas-amount {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Tag session en haut à droite */
.session-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(80, 80, 100, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #d5d5f3;
}

/* Adresse */
.address-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.84rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6e6ff;
}

/* Explorer link (pro) */
.explorer-link {
  color: #70C7BA;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.explorer-link:hover {
  text-decoration: underline;
  color: #8af2d4;
}

/* Timer */
.payment-demo-timer {
  color: #70C7BA;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Icônes Lucide (rendu stable) */
.lucide {
  width: 1.05em;
  height: 1.05em;
  stroke-width: 1.6;
  vertical-align: -0.2em;
}

/* Badge statut (vert) */
.status-pill--pending {
  background: rgba(112, 199, 186, 0.15);
  color: #70C7BA;
  border: 1px solid rgba(112, 199, 186, 0.35);
}

/* Hover global sur éléments de carte */
.payment-card:hover {
  border-color: rgba(112, 199, 186, 0.3);
  box-shadow: 0 0 28px rgba(112, 199, 186, 0.15);
}

/* Label Adresse */
.label {
  font-size: 0.78rem;
  opacity: 0.7;
}
.lucide {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 2;
  vertical-align: -0.15em;
}
/* ===========================================================
   Kaspa Live Price (Header)
   =========================================================== */

.kaspa-price-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(112, 199, 186, 0.12);
  border: 1px solid rgba(112, 199, 186, 0.25);
  border-radius: 999px;
  color: #70C7BA;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.kaspa-price-box i {
  color: #70C7BA;
  width: 16px;
  height: 16px;
}

body[data-theme="light"] .kaspa-price-box {
  background: rgba(90, 75, 255, 0.05);
  border-color: rgba(90, 75, 255, 0.22);
  color: #4a3aff;
}

body[data-theme="light"] .kaspa-price-box i {
  color: #4a3aff;
}
/* ===========================================================
   FIX : Lisibilité en thème clair (textes devenus blancs)
   =========================================================== */

/* -------- HEADER -------- */
body[data-theme="light"] .brand-sub {
  color: #444 !important;
}

body[data-theme="light"] .brand-title span {
  text-shadow: none !important;
}

/* -------- HERO BADGE -------- */
body[data-theme="light"] .hero-badge {
  background: rgba(90, 75, 255, 0.10);
  color: #5a4bff;
}

/* -------- PAYMENT DEMO CARD -------- */
body[data-theme="light"] .payment-demo {
  background: #ffffff;
  border: 1px solid #d8daf3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .payment-demo-header,
body[data-theme="light"] .payment-demo-timer,
body[data-theme="light"] .payment-section label,
body[data-theme="light"] .kas-amount,
body[data-theme="light"] .fiat-amount {
  color: #222 !important;
}

body[data-theme="light"] .address-box {
  background: #f3f4ff;
  border: 1px solid #d5d6ed;
  color: #222;
}

body[data-theme="light"] .session-tag {
  background: #e3e4fb;
  border-color: #c4c6f0;
  color: #333;
}

body[data-theme="light"] .explorer-link {
  color: #5a4bff !important;
}

body[data-theme="light"] .explorer-link i {
  stroke: #5a4bff !important;
}

/* -------- STATUS PILLS -------- */
body[data-theme="light"] .status-pill {
  background: #ececff;
  color: #444;
  border: 1px solid #d3d5ef;
}

body[data-theme="light"] .status-pill--pending {
  background: rgba(255, 193, 7, 0.12);
  border-color: rgba(255, 193, 7, 0.3);
  color: #8a6a00;
}

/* -------- CARDS -------- */
body[data-theme="light"] .card {
  background: #f5f6ff;
  border-color: #cfd2f0;
  color: #1a1a2b;
}

body[data-theme="light"] .card p,
body[data-theme="light"] .card li {
  color: #444 !important;
}

/* -------- ICONES LUCIDE -------- */
body[data-theme="light"] i[data-lucide] {
  stroke: #5a4bff !important; /* mauve kaspanova */
}

