/* =====================================================================
   NUTRIKIDS – Feuille de style principale
   Palette inspirée Synergie Ligne : verts doux, naturel, bien-être
   ===================================================================== */

/* ---- Variables CSS (palette centralisée) ---- */
:root {
  /* Couleurs principales */
  --c-fond:          #f5f0e8;        /* ivoire chaud */
  --c-fond-alt:      #eef6ee;        /* vert très pâle */
  --c-carte:         #ffffff;
  --c-ombre:         rgba(100,120,80,0.12);

  /* Palette de marque */
  --c-vert-principal: #6aab6a;       /* vert sauge */
  --c-vert-fonce:     #4a8a4a;
  --c-vert-clair:     #b5ead7;
  --c-beige:          #f2e8d5;
  --c-peche:          #ffd6c0;

  /* Cases thématiques */
  --c-case-normal:    #ffffff;
  --c-case-active:    #fff3b0;       /* jaune doux */
  --c-case-depart:    #c9f0d0;
  --c-case-arrivee:   #ffd6e0;

  /* Feedback */
  --c-bon:            #6bcb77;
  --c-bon-fond:       #e8f8ea;
  --c-mauvais:        #ff9b71;
  --c-mauvais-fond:   #fff0eb;

  /* Boutons */
  --c-btn-primaire:   #6aab6a;
  --c-btn-hover:      #4a8a4a;
  --c-btn-texte:      #ffffff;
  --c-btn-reponse:    #f5f0e8;
  --c-btn-reponse-bord: #c5dbc5;

  /* Textes */
  --c-texte:          #3d5a3d;
  --c-texte-doux:     #7a9a7a;
  --c-texte-blanc:    #ffffff;

  /* Accents */
  --c-accent-or:      #f9c784;
  --c-accent-bleu:    #a8d8ea;
  --c-accent-lilas:   #e8d5ff;

  /* Plateau */
  --c-plateau-fond:   #dff0dc;
  --c-plateau-bord:   #b0d4b0;

  /* Typographie */
  --font-titre:       'Fredoka One', 'Comic Sans MS', cursive;
  --font-corps:       'Nunito', 'Trebuchet MS', sans-serif;

  /* Dimensions */
  --rayon:            16px;
  --rayon-grand:      24px;
  --ombre:            0 4px 20px var(--c-ombre);
  --ombre-forte:      0 8px 32px rgba(80,120,80,0.18);
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-corps);
  background: var(--c-fond);
  color: var(--c-texte);
  min-height: 100vh;
  position: relative;
  /* Motif de fond décoratif */
  background-image:
    radial-gradient(circle at 10% 20%, rgba(107,203,119,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(168,216,234,0.10) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(249,199,132,0.06) 0%, transparent 60%);
}

/* =====================================================================
   CANVAS CONFETTIS
   ===================================================================== */
#confettis-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* =====================================================================
   ÉCRANS
   ===================================================================== */
.ecran {
  display: none;
  min-height: 100vh;
  padding: 20px;
}

.ecran.actif {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: apparaitre 0.5s ease;
}

@keyframes apparaitre {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   ÉCRAN D'ACCUEIL
   ===================================================================== */
#ecran-accueil {
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--c-vert-clair) 0%, var(--c-fond) 40%, var(--c-accent-or) 100%);
}

.accueil-logo {
  font-size: 80px;
  margin-bottom: 10px;
  animation: flotter 3s ease-in-out infinite;
}

@keyframes flotter {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-12px) rotate(3deg); }
}

.accueil-titre {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--c-vert-fonce);
  text-shadow: 3px 3px 0 rgba(255,255,255,0.6);
  line-height: 1.1;
  margin-bottom: 6px;
}

.accueil-sous-titre {
  font-family: var(--font-titre);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--c-texte-doux);
  margin-bottom: 30px;
}

.accueil-description {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-texte);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  padding: 20px 28px;
  border-radius: var(--rayon-grand);
  margin-bottom: 36px;
  border: 2px solid rgba(255,255,255,0.9);
}

.accueil-emojis {
  font-size: 2rem;
  letter-spacing: 8px;
  margin-bottom: 32px;
  animation: scintiller 2s ease-in-out infinite;
}

@keyframes scintiller {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.3) drop-shadow(0 0 8px gold); }
}

.accueil-marque {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--c-texte-doux);
  opacity: 0.8;
}

/* =====================================================================
   BOUTONS GÉNÉRAUX
   ===================================================================== */
.btn-principal {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--c-btn-primaire), var(--c-vert-fonce));
  color: var(--c-btn-texte);
  border: none;
  border-radius: 50px;
  padding: 18px 48px;
  cursor: pointer;
  box-shadow: 0 6px 0 var(--c-vert-fonce), var(--c-ombre);
  transition: transform 0.1s, box-shadow 0.1s;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-principal::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.4s;
}

.btn-principal:hover::after  { left: 100%; }
.btn-principal:hover         { transform: translateY(-3px); box-shadow: 0 9px 0 var(--c-vert-fonce), var(--c-ombre); }
.btn-principal:active        { transform: translateY(2px);  box-shadow: 0 4px 0 var(--c-vert-fonce); }

/* =====================================================================
   ÉCRAN DE JEU
   ===================================================================== */
#ecran-jeu {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 14px;
  padding-bottom: 24px;
}

/* ---- En-tête de jeu ---- */
.jeu-entete {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.8);
  border-radius: var(--rayon-grand);
  box-shadow: var(--ombre);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.jeu-titre {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  color: var(--c-vert-fonce);
}

.jeu-info {
  font-size: 0.9rem;
  color: var(--c-texte-doux);
  background: var(--c-fond-alt);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
}

.jeu-score {
  display: flex;
  gap: 10px;
}

.score-badge {
  background: var(--c-accent-or);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-texte);
}

/* ---- Zone centrale ---- */
.jeu-corps {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  align-items: start;
}

/* =====================================================================
   PLATEAU DE JEU
   ===================================================================== */
.plateau-wrapper {
  position: relative;
  background: var(--c-plateau-fond);
  border-radius: var(--rayon-grand);
  padding: 16px;
  box-shadow: var(--ombre-forte), inset 0 2px 8px rgba(0,0,0,0.05);
  border: 3px solid var(--c-plateau-bord);
  overflow: visible;
}

#plateau {
  display: grid;
  gap: 8px;
  position: relative;
}

/* ---- Cases ---- */
.case {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--rayon);
  border: 2.5px solid rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  min-width: 0;
}

.case::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  border-radius: inherit;
}

.case-numero {
  font-family: var(--font-titre);
  font-size: clamp(0.55rem, 1.2vw, 0.85rem);
  color: rgba(60,80,60,0.7);
  position: absolute;
  top: 3px;
  left: 5px;
  line-height: 1;
}

.case-emoji {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* États des cases */
.case-depart {
  background: var(--c-case-depart) !important;
  border: 3px solid var(--c-vert-principal) !important;
}

.case-depart::after {
  content: 'Départ';
  position: absolute;
  bottom: 2px;
  font-size: 0.45rem;
  font-family: var(--font-titre);
  color: var(--c-vert-fonce);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.case-arrivee {
  background: linear-gradient(135deg, #ffd6e0, #ffe8b6) !important;
  border: 3px solid #ff9baa !important;
  animation: pulsation-arrivee 2s ease-in-out infinite;
}

.case-arrivee::after {
  content: '🏆';
  position: absolute;
  bottom: 0;
  font-size: 0.7rem;
}

@keyframes pulsation-arrivee {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,154,170,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(255,154,170,0); }
}

.case-active {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px var(--c-accent-or), 0 6px 20px rgba(0,0,0,0.15) !important;
  border-color: var(--c-accent-or) !important;
  z-index: 2;
}

.case-traversee {
  transform: scale(1.04);
  box-shadow: 0 0 0 3px rgba(249,199,132,0.6);
}

/* =====================================================================
   PION JOUEUR
   ===================================================================== */
#pion {
  position: absolute;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  transition: left 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              top  0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
  pointer-events: none;
  animation: pion-idle 2s ease-in-out infinite;
}

@keyframes pion-idle {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(-5deg); }
  50%       { transform: translate(-50%, -50%) scale(1.1) rotate(5deg); }
}

.pion-retour {
  animation: retour-depart 0.5s ease-in-out !important;
}

@keyframes retour-depart {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%  { transform: translate(-50%, -50%) scale(2); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* =====================================================================
   PANNEAU LATÉRAL (dé + info)
   ===================================================================== */
.panneau-lateral {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ---- Dé ---- */
.des-container {
  background: white;
  border-radius: var(--rayon-grand);
  padding: 20px;
  box-shadow: var(--ombre);
  text-align: center;
  width: 100%;
}

.des-titre {
  font-family: var(--font-titre);
  font-size: 0.9rem;
  color: var(--c-texte-doux);
  margin-bottom: 10px;
}

#des {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: transform 0.1s;
}

.des-valeur {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: var(--c-vert-fonce);
  margin-bottom: 14px;
}

.des-valeur span {
  background: var(--c-accent-or);
  padding: 2px 10px;
  border-radius: 50px;
}

/* Animation dé */
@keyframes rotation-de {
  0%   { transform: rotate(0deg) scale(0.8); }
  25%  { transform: rotate(-20deg) scale(1.2); }
  50%  { transform: rotate(20deg) scale(0.9); }
  75%  { transform: rotate(-10deg) scale(1.1); }
  100% { transform: rotate(0deg) scale(1); }
}

.des-rotation {
  animation: rotation-de 0.15s ease-in-out infinite !important;
}

@keyframes pop-de {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.des-pop { animation: pop-de 0.3s ease-out; }

/* ---- Bouton lancer dé ---- */
#btn-des {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  background: linear-gradient(135deg, #6aab6a, #4a8a4a);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 5px 0 #3a6a3a;
  transition: all 0.1s;
}

#btn-des:hover   { transform: translateY(-2px); box-shadow: 0 7px 0 #3a6a3a; }
#btn-des:active  { transform: translateY(3px); box-shadow: 0 2px 0 #3a6a3a; }
#btn-des:disabled {
  background: #ccc;
  box-shadow: 0 5px 0 #aaa;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ---- Carte info case ---- */
.info-case-carte {
  background: white;
  border-radius: var(--rayon);
  padding: 14px;
  box-shadow: var(--ombre);
  text-align: center;
  width: 100%;
}

.info-case-carte .label {
  font-size: 0.75rem;
  color: var(--c-texte-doux);
  margin-bottom: 4px;
}

#case-info {
  font-family: var(--font-titre);
  font-size: 1rem;
  color: var(--c-vert-fonce);
}

/* ---- Score ---- */
.score-carte {
  background: var(--c-fond-alt);
  border-radius: var(--rayon);
  padding: 12px;
  text-align: center;
  width: 100%;
  border: 2px solid var(--c-vert-clair);
}

.score-carte .label {
  font-size: 0.75rem;
  color: var(--c-texte-doux);
}

.score-carte .valeur {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  color: var(--c-vert-fonce);
}

/* =====================================================================
   MODALE DE QUESTION
   ===================================================================== */
#modale-question {
  position: fixed;
  inset: 0;
  background: rgba(60,90,60,0.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#modale-question.visible {
  opacity: 1;
  pointer-events: all;
}

.modale-carte {
  background: var(--c-carte);
  border-radius: var(--rayon-grand);
  padding: 32px 28px 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  animation: modale-entree 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid var(--c-vert-clair);
}

@keyframes modale-entree {
  from { transform: scale(0.7) translateY(30px); opacity: 0; }
  to   { transform: scale(1) translateY(0);      opacity: 1; }
}

.modale-decoration {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border: 3px solid var(--c-vert-clair);
}

#modale-emoji { font-size: 28px; }

.modale-question-text {
  font-family: var(--font-titre);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--c-texte);
  text-align: center;
  margin: 20px 0 24px;
  line-height: 1.4;
}

/* ---- Boutons de réponse ---- */
#modale-reponses {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-reponse {
  font-family: var(--font-corps);
  font-size: 1rem;
  font-weight: 700;
  background: var(--c-btn-reponse);
  color: var(--c-texte);
  border: 2.5px solid var(--c-btn-reponse-bord);
  border-radius: var(--rayon);
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}

.btn-reponse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent);
}

.btn-reponse:hover:not(:disabled) {
  background: var(--c-vert-clair);
  border-color: var(--c-vert-principal);
  transform: translateX(4px);
}

.btn-reponse:active:not(:disabled) { transform: translateX(2px) scale(0.98); }

.btn-reponse.reponse-correcte {
  background: var(--c-bon-fond);
  border-color: var(--c-bon);
  color: #2d7a2d;
  animation: rebond-correct 0.4s ease;
}

@keyframes rebond-correct {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.05); }
  70%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.btn-reponse.reponse-incorrecte {
  background: var(--c-mauvais-fond);
  border-color: var(--c-mauvais);
  color: #c44d00;
}

/* ---- Feedback ---- */
.modale-feedback {
  border-radius: var(--rayon);
  padding: 0;
  transition: all 0.3s;
  text-align: center;
}

.feedback-bon,
.feedback-mauvais {
  padding: 18px 20px;
  border-radius: var(--rayon);
  animation: apparaitre 0.3s ease;
}

.feedback-bon {
  background: var(--c-bon-fond);
  border: 2px solid var(--c-bon);
}

.feedback-mauvais {
  background: var(--c-mauvais-fond);
  border: 2px solid var(--c-mauvais);
}

.feedback-icone  { font-size: 2rem; margin-bottom: 6px; }
.feedback-titre  {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.feedback-bon .feedback-titre    { color: #2d7a2d; }
.feedback-mauvais .feedback-titre { color: #b05020; }

.feedback-explication {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--c-texte);
  margin-bottom: 10px;
}

.feedback-retour {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--c-mauvais);
  margin-bottom: 12px;
}

.btn-continuer {
  font-family: var(--font-titre);
  font-size: 1rem;
  background: var(--c-vert-principal);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 4px 0 var(--c-vert-fonce);
}

.btn-continuer:hover  { transform: translateY(-2px); }
.btn-continuer:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--c-vert-fonce); }

.btn-retour {
  background: var(--c-mauvais);
  box-shadow: 0 4px 0 #c05000;
}

.btn-retour:hover { background: #ff8560; }

/* =====================================================================
   ANIMATION TREMBLEMENT (mauvaise réponse)
   ===================================================================== */
@keyframes tremblement {
  0%,100% { transform: translateX(0);   }
  10%      { transform: translateX(-8px) rotate(-1deg); }
  20%      { transform: translateX(8px)  rotate(1deg);  }
  30%      { transform: translateX(-6px) rotate(-0.5deg); }
  40%      { transform: translateX(6px)  rotate(0.5deg);  }
  50%      { transform: translateX(-4px); }
  60%      { transform: translateX(4px);  }
  70%      { transform: translateX(-2px); }
  80%      { transform: translateX(2px);  }
}

.tremblement { animation: tremblement 0.7s ease-in-out; }

/* =====================================================================
   ÉCRAN VICTOIRE
   ===================================================================== */
#ecran-victoire {
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #fff9c4, #c8f0c8, #ffd6e0);
  animation: fond-victoire 3s ease-in-out infinite alternate;
}

@keyframes fond-victoire {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

.victoire-trophee {
  font-size: 100px;
  animation: trophee-dance 0.8s ease-in-out infinite alternate;
  display: block;
  margin-bottom: 10px;
}

@keyframes trophee-dance {
  from { transform: scale(1) rotate(-8deg); }
  to   { transform: scale(1.15) rotate(8deg); }
}

.victoire-titre {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--c-vert-fonce);
  text-shadow: 3px 3px 0 rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.victoire-sous-titre {
  font-size: 1.2rem;
  color: var(--c-texte);
  margin-bottom: 16px;
}

#victoire-score {
  background: rgba(255,255,255,0.8);
  border-radius: var(--rayon-grand);
  padding: 16px 30px;
  font-family: var(--font-titre);
  font-size: 1.3rem;
  color: var(--c-vert-fonce);
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: var(--ombre);
}

.victoire-emojis {
  font-size: 2.5rem;
  letter-spacing: 6px;
  margin-bottom: 30px;
  animation: flotter 2s ease-in-out infinite;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 860px) {
  .jeu-corps {
    grid-template-columns: 1fr;
  }

  .panneau-lateral {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .panneau-lateral > * {
    flex: 1 1 160px;
    max-width: 200px;
  }

  #ecran-jeu { padding: 12px; }
}

@media (max-width: 560px) {
  #plateau { gap: 5px; }

  .case-emoji  { font-size: 1rem; }
  .case-numero { font-size: 0.5rem; }

  .modale-carte { padding: 28px 16px 20px; }

  .jeu-entete {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .jeu-score { flex-wrap: wrap; }

  .accueil-titre { font-size: 2rem; }
}

@media (max-width: 400px) {
  #plateau { gap: 4px; padding: 8px; }
  .plateau-wrapper { padding: 10px; }
}

/* =====================================================================
   SCROLLBAR CUSTOM
   ===================================================================== */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-fond); }
::-webkit-scrollbar-thumb { background: var(--c-vert-clair); border-radius: 4px; }

/* =====================================================================
   ACCESSIBILITÉ
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 3px solid var(--c-vert-principal);
  outline-offset: 3px;
}

/* =====================================================================
   SÉLECTION DE TEXTE
   ===================================================================== */
::selection {
  background: var(--c-vert-clair);
  color: var(--c-vert-fonce);
}
