/* =====================================================
   Explorateurs du Virtuel — Styles principaux
   Auteur : Vincent L.
   Date : 2025
   ===================================================== */

:root {
  --bg:#0b1f18;           /* fond principal sombre vert */
  --bg-2:#0f2a1f;         /* fond sections */
  --card:#123326;         /* cartes */
  --line:#1a4b36;         /* traits décoratifs */
  --text:#e6fff2;         /* texte principal */
  --muted:#bfe6d4;        /* texte secondaire */
  --accent:#34d399;       /* vert joyeux */
  --accent-2:#a7f3d0;     /* vert clair */
  --gold:#e7c87a;         /* touche aventure */
  --shadow: rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 50% 10%, #1b3a2b 0%, #0b1f18 40%, #07130e 100%);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg), transparent 40%);
  border-bottom: 1px solid var(--line);
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* 🔹 Ajoute de l’air entre le brand et le menu */
}
						@media (min-width: 1000px) {
  .nav-inner {
    gap: 60px;
  }
}
.brand { display:flex; align-items:center; gap:.6rem; font-weight:700; letter-spacing:.3px; }
.brand span { color: var(--text); }
.menu { display:flex; gap:20px; align-items:center; }
.menu a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease; /* + fluide */
}

.menu a:hover {
  color: var(--accent);       /* ✅ vert comme les titres */
  text-decoration: none;
}
.menu a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.mobile-menu a:hover {
  background:#10271d;
  color: var(--accent);       /* ✅ vert au survol aussi en mobile */
  text-decoration: none;
}


/* CTA global (centrage garanti partout) */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  background: var(--accent);
  color:#072016;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 10px 25px -10px var(--accent);
  border:1px solid #2bbf86;
}
.cta:hover { filter: brightness(1.05); text-decoration:none; }

/* Bouton CTA du header : hauteur mini homogène */
header .cta{
  min-height: 40px;
}

/* ==========================
   Burger menu (mobile) + anim X
   ========================== */
.burger{
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color .25s ease, transform .2s ease;
}
.burger:hover{ background-color: rgba(255,255,255,0.05); transform: scale(1.04); }

/* Les 3 traits */
.burger .line{
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger .top{    top: 16px; transform-origin: center; }
.burger .middle{ top: 23px; }
.burger .bottom{ top: 30px; transform-origin: center; }

/* État ouvert : croix */
.burger.is-open .top{    transform: translateY(7px) rotate(45deg); }
.burger.is-open .middle{ opacity: 0; }
.burger.is-open .bottom{ transform: translateY(-7px) rotate(-45deg); }

/* Affichage du burger en mobile */
@media (max-width: 860px){
  .menu{ display: none; }
  .burger{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ==========================
   Mobile menu : visible par défaut, masqué via [hidden]
   ========================== */
.mobile-menu{
  /* SUPPRIME l’ancien "display:none" ! */
  display: block;
  border-bottom: 1px solid var(--line);
  background: #0c2017;
}
.mobile-menu[hidden]{ display: none !important; }
.mobile-menu a{ display:block; padding:14px 20px; color: var(--muted); border-top:1px solid var(--line); text-decoration:none; }
.mobile-menu a:hover{ background:#10271d; color:var(--text); }

/* Logo nav */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  margin-right: 10px;
}

/* ==========================
   Section Hero + logo
   ========================== */
.hero { position: relative; padding: 92px 0 72px; }
.hero .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.badge { display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border:1px solid var(--line); border-radius:999px; color: var(--muted); background: #0e261d; font-weight:700; font-size:.88rem; }
.title { font-size: clamp(2rem, 3.2vw, 3.1rem); line-height:1.15; margin: .2rem 0; }
.title .accent{ color: var(--accent); }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.hero-actions { display:flex; gap:12px; margin-top: 10px; flex-wrap:wrap; }

/* Ghost aligné comme la CTA */
.ghost {
  background: transparent;
  border:1px solid var(--line);
  color: var(--text);
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #0f241c 0%, #0a1b14 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 50px -20px var(--shadow);
}
.hero-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 960px) {
  .hero .inner { grid-template-columns: 1fr; }
  .hero-logo-box { margin-top: 30px; }
}

/* Sections génériques */
section { padding: 70px 0; border-top:1px solid var(--line); background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg-2), transparent 60%) 60%, transparent); }
h2 { font-size: clamp(1.6rem, 2.3vw, 2.2rem); margin: 0 0 14px; }
.sub { color: var(--muted); margin-top: -4px; margin-bottom: 24px; }

.grid { display:grid; gap:16px; grid-template-columns: repeat(12, 1fr); }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.card { background: linear-gradient(180deg, #10271d, #0b1d15); border:1px solid var(--line); padding:18px; border-radius:16px; box-shadow: 0 20px 40px -30px var(--shadow); }
.card h3 { margin:6px 0 8px; font-size:1.2rem; }
.icon { width:28px; height:28px; display:grid; place-items:center; border-radius:10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); filter: drop-shadow(0 8px 16px var(--shadow)); }
@media (max-width: 960px){ .col-3, .col-4 { grid-column: span 6; } }
@media (max-width: 640px){ .col-3, .col-4 { grid-column: span 12; } }

/* ==========================
   Section Horaires & lieu — centrage et cohérence
   ========================== */
.schedule{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.schedule .box{
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centrage vertical des contenus */
  align-items: center;       /* centrage horizontal */
  background: #0f251c;
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px;
  min-height: 140px;         /* valeur unique */
}
.schedule .box b{
  color: var(--accent);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2em;         /* zone stable pour le titre */
  margin-bottom: 8px;
}
.schedule .box br{ display: none; } /* évite les retours de ligne forcés */
@media (max-width: 860px){ .schedule { flex-direction: column; } }

/* ==========================
   Section Adhérer centrée
   ========================== */
#rejoindre {
  background: linear-gradient(180deg, #10271d, #0b1d15);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 20px;
  text-align: center;
}
#rejoindre .adhesion {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0f251c, #0a1b14);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px -25px var(--shadow);
}
#rejoindre .sub { color: var(--muted); margin-bottom: 24px; }
#rejoindre .list {
  list-style: none; padding: 0; margin: 0 auto 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
#rejoindre .list li { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--text); }
#rejoindre .tick { color: var(--gold); font-size: 1.2rem; }
/* aligne la CTA localement sans casser le style global */
#rejoindre .cta { display: inline-flex; align-items:center; justify-content:center; margin-top: 10px; padding: 12px 20px; font-weight: 700; }
#rejoindre .note { color: var(--muted); font-style: italic; margin-top: 16px; }

/* ==========================
   Section Partenaires
   ========================== */
#partenaires {
  background: linear-gradient(180deg, #0b1f18, #07130e);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 80px 20px;
}
#partenaires h2 { font-size: clamp(1.8rem, 2.5vw, 2.2rem); color: var(--text); margin-bottom: 0.5rem; }
#partenaires .sub { color: var(--muted); margin-bottom: 2rem; }
.partners-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.partner-logo { width: 160px; height: auto; filter: drop-shadow(0 0 8px rgba(52,211,153,0.3)); transition: transform 0.3s ease, filter 0.3s ease; }
.partner-logo:hover { transform: scale(1.05); filter: drop-shadow(0 0 16px rgba(52,211,153,0.6)); }

/* ==========================
   Réseaux sociaux (4 blocs harmonisés)
   ========================== */
.socials {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px){
  .socials { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .socials { grid-template-columns: 1fr; }
}

/* Bloc générique pour chaque réseau */
.socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0e241b;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.socials a:hover {
  background: #10281e;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px var(--shadow);
  text-decoration: none;
}

/* Logos (communs aux 4) */
.facebook-logo,
.instagram-logo,
.twitch-logo,
.discord-logo {
  width: 90px;
  height: auto;
  max-height: 90px;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.socials a:hover .facebook-logo,
.socials a:hover .instagram-logo,
.socials a:hover .twitch-logo,
.socials a:hover .discord-logo {
  transform: scale(1.05);
}

/* Textes sous logos (communs) */
.facebook-text,
.instagram-text,
.twitch-text,
.discord-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}


/* ==========================
   Icônes personnalisées — section "Qui sommes-nous"
   ========================== */
.icon-img {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0 0 10px rgba(52,211,153,0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.card:hover .icon-img { transform: scale(1.05); filter: drop-shadow(0 0 16px rgba(52,211,153,0.6)); }

/* ==========================
   Section "Nos activités" — alignement harmonisé
   ========================== */
#activites .grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 20px;
}
#activites .card {
  flex: 1 1 250px;
  display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
  text-align: center; padding: 30px 20px;
  background: rgba(255,255,255,0.02); border-radius: 12px;
  min-height: 280px;
}
#activites .card h3 {
  margin: 0.8rem 0 0.6rem; font-size: 1.25rem; color: var(--text);
  text-align: center; min-height: 2.6em; display:flex; align-items:center; justify-content:center;
}
#activites .card p {
  flex-grow: 1; color: var(--muted); font-size: 1rem; line-height: 1.4; text-align: center;
}

/* Formulaires */
form { display:grid; gap:12px; }
label { font-weight:600; color: var(--muted); }
input, textarea { width:100%; background:#0c2017; border:1px solid var(--line); color:var(--text); border-radius:10px; padding:12px 12px; font: inherit; }
textarea { min-height: 120px; resize: vertical; }
.note { font-size:.92rem; color: var(--muted); }

/* Footer */
footer { padding: 28px 0 60px; color: var(--muted); border-top:1px solid var(--line); background: #0a1b14; }
.center { text-align:center; }
.muted { color: var(--muted); }
.spacer { height: 10px; }

/* ==========================
   Couleurs et style des titres
   ========================== */
h1, h2, h3 {
  font-weight: 700;
  color: #34d399;
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.25);
}
h2 { font-size: clamp(1.8rem, 2.5vw, 2.3rem); margin-bottom: 0.5rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
/* Dégradé léger sur h2/h3 */
h2, h3 {
  background: linear-gradient(90deg, #34d399, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================
   Brume animée ultra-légère + lucioles
   ========================== */
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(800px 500px at 60% 20%, rgba(52, 211, 153, 0.10), transparent 70%),
    radial-gradient(600px 400px at 20% 80%, rgba(167, 243, 208, 0.07), transparent 70%);
  mix-blend-mode: screen;
  animation: brume-drift 60s linear infinite;
}
@keyframes brume-drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(2vw,-1vh,0) scale(1.02); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
.fireflies { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.fireflies span {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(167, 243, 208, 0.85); filter: blur(0.5px); opacity: 0.0;
  animation: floatY var(--dur, 22s) ease-in-out infinite, driftX var(--dur2, 28s) linear infinite, twinkle 3.6s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8vh); } }
@keyframes driftX { 0% { transform: translateX(0); } 100% { transform: translateX(6vw); } }
@keyframes twinkle { 0%,100% { opacity: 0.0; } 20% { opacity: 0.8; } 60% { opacity: 0.3; } }
.fireflies span:nth-child(1){ top:12%; left:18%;  --dur:24s; --dur2:30s; animation-delay: .2s; }
.fireflies span:nth-child(2){ top:28%; left:72%;  --dur:26s; --dur2:26s; animation-delay: 1.1s; }
.fireflies span:nth-child(3){ top:46%; left:12%;  --dur:22s; --dur2:32s; animation-delay: .6s; }
.fireflies span:nth-child(4){ top:64%; left:58%;  --dur:25s; --dur2:29s; animation-delay: 1.8s; }
.fireflies span:nth-child(5){ top:18%; left:86%;  --dur:23s; --dur2:31s; animation-delay: .9s; }
.fireflies span:nth-child(6){ top:78%; left:24%;  --dur:27s; --dur2:27s; animation-delay: 1.4s; }
.fireflies span:nth-child(7){ top:38%; left:44%;  --dur:28s; --dur2:25s; animation-delay: .3s; }
.fireflies span:nth-child(8){ top:70%; left:80%;  --dur:24s; --dur2:33s; animation-delay: 1.9s; }

@media (prefers-reduced-motion: reduce) {
  body::after, .fireflies span { animation: none !important; opacity: .12; }
}

/* ==========================
   "Qui sommes-nous" — titres centrés, texte justifié sans césure
   ========================== */
#qui .card h3 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6em;
  margin: 0.8rem 0 0.6rem;
}

#qui .card p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;              /* 🔸 empêche les césures automatiques */
  overflow-wrap: break-word;  /* 🔸 passe à la ligne au lieu de couper le mot */
  word-break: normal;         /* 🔸 ne coupe pas les mots en plein milieu */
  margin: 0;
}

#qui .card p + p {
  margin-top: .6rem;
}

/* ===== ÉVÉNEMENTS (2 cartes avec date au-dessus de l'image) ===== */
#evenements .events-two {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}

/* Chaque carte occupe 6 colonnes = 2 cartes par ligne */
#evenements .event-item {
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #10271d, #0b1d15);
  box-shadow: 0 20px 40px -30px var(--shadow);
  padding: 16px;
}

/* En dessous de 900px : 1 carte par ligne */
@media (max-width: 900px){
  #evenements .event-item { grid-column: span 12; }
}

/* Date au-dessus de l’image */
#evenements .event-date {
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  color: var(--accent);
}

/* --- Bloc image uniforme --- */
#evenements .event-media {
  position: relative;
  width: 100%;
  height: 320px;                /* ✅ fixe la même hauteur pour toutes les images */
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e241b;          /* fond neutre */
}

/* Image recadrée proprement sans déformation */
#evenements .event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* ✅ remplit le cadre sans déformer (recadre un peu) */
  object-position: center;
  display: block;
}

/* --- Texte sous l’image --- */
#evenements .event-text {
  margin-top: 12px;
}

#evenements .event-title {
  margin: 0 0 6px 0;
  font-size: 1.25rem;
  background: linear-gradient(90deg, #34d399, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#evenements .event-desc {
  margin: 0;
  color: var(--muted);
}
/* Fix: aligner parfaitement la date et l'image */
#evenements .event-date {
  margin: 0 0 10px 0;        /* supprime le décalage à gauche */
}

/* Fix: reset des marges par défaut de <figure> */
#evenements .event-media {
  margin: 0;                 /* annule le margin 40px natif de <figure> */
  position: relative;
  width: 100%;
  height: 320px;             /* ta hauteur uniforme si tu l'utilises */
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e241b;
}

/* Rappel image pleine largeur dans le cadre */
#evenements .event-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* ou 'contain' si tu ne veux aucun rognage */
  object-position: center;
}

																																																																																									  /* ===== JEUX À VENIR ===== */
.games-page { padding: 70px 0; }
.games-page h1 { margin: 0 0 10px; }
.games-page .sub { color: var(--muted); margin-bottom: 18px; }

.games-toolbar{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

/* Ligne du haut : recherche + filtres date */
.games-toolbar-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

/* Bloc année + mois regroupés */
.games-date-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#games-search{
  flex: 1 1 260px; padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--line); background: #0c2017; color: var(--text);
}
.chips{ display: flex; gap: 8px; flex-wrap: wrap; }
.chip{
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: #0e241b; color: var(--text); cursor: pointer; font-weight: 700;
}
.chip.is-active{ background: var(--accent); color:#072016; border-color:#2bbf86; }

.games-grid{
  display: grid; gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 980px){ .games-grid{ gap:16px; } }
@media (max-width: 900px){ .games-grid{ grid-template-columns: repeat(8, 1fr); } }
@media (max-width: 640px){ .games-grid{ grid-template-columns: repeat(4, 1fr); } }

.game-card{
  grid-column: span 4;           /* 3 par ligne desktop */
  background: linear-gradient(180deg, #10271d, #0b1d15);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 20px 40px -30px var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
}
@media (max-width: 900px){ .game-card{ grid-column: span 4; } }   /* 2 par ligne */
@media (max-width: 640px){ .game-card{ grid-column: span 4; } }   /* 1 par ligne */

.game-cover{
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: #0e241b; border-bottom: 1px solid var(--line);
}
.game-cover img{
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transition: transform .3s ease, filter .3s ease;
}
.game-cover:hover img{ transform: scale(1.03); filter: brightness(1.05); }

.game-cover .badge{
  position: absolute; left: 10px; top: 10px;
  background: var(--accent); color:#072016; font-weight: 800;
  border: 1px solid #2bbf86; border-radius: 10px;
  padding: 6px 10px; box-shadow: 0 10px 25px -12px var(--accent);
}

.game-body{ padding: 14px; display: grid; gap: 8px; }
.game-title{
  margin: 0; font-size: 1.05rem;
  background: linear-gradient(90deg, #34d399, #4ade80);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.game-platforms{ display: flex; flex-wrap: wrap; gap: 6px; }
.tag{
  background: #0e241b; border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 999px; font-size: .85rem; color: var(--muted);
}
.game-summary{ color: var(--muted); margin: 0; line-height: 1.45; }
.game-link a{ color: var(--accent-2); text-decoration: none; }
.game-link a:hover{ text-decoration: underline; }

																																																																																																											  /* Filtres année / mois */
#games-year, #games-month{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0e241b;
  color: var(--text);
}
