:root {
  --fond: #10132A;
  --fond-2: #151936;
  --fond-3: #1B2044;
  --carte: #171C3B;
  --violet: #5064FB;
  --violet-clair: #8B9AFF;
  --violet-glow: rgba(80, 100, 251, 0.55);
  --texte: #E8EAF6;
  --texte-70: rgba(232, 234, 246, 0.72);
  --texte-45: rgba(232, 234, 246, 0.45);
  --trait: rgba(139, 154, 255, 0.16);
  --vert: #3DDC84;
  --titre: "Oswald", sans-serif;
  --corps: "Nunito", sans-serif;
  --rayon: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--fond);
  color: var(--texte);
  font-family: var(--corps);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; }
img, svg { display: block; }

.conteneur { width: min(1200px, 92%); margin-inline: auto; }

/* ===== Décor flottant ===== */
.decor {
  position: absolute; z-index: 0; pointer-events: none;
  opacity: .10; color: var(--violet-clair);
  animation: flotter 14s ease-in-out infinite;
}
.decor svg { width: 100%; height: 100%; }
@keyframes flotter {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(6deg); }
}

/* ===== Navigation ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(16, 19, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,154,255,.08);
}
.nav-int { display: flex; align-items: center; gap: 2.2rem; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-icone {
  width: 34px; height: 34px; color: var(--violet-clair);
  filter: drop-shadow(0 0 8px var(--violet-glow));
}
.logo-texte {
  font-family: var(--titre); font-weight: 700; font-size: 1.3rem;
  letter-spacing: .18em; line-height: 1;
}
.logo-texte small {
  display: block; font-size: .55rem; font-weight: 600;
  letter-spacing: .42em; color: var(--violet-clair);
}
.nav-liens { display: flex; gap: 1.8rem; list-style: none; }
.nav-liens a {
  font-family: var(--titre); font-weight: 500; font-size: .95rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--texte-70);
  padding-bottom: .35rem; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-liens a:hover, .nav-liens a:focus-visible,
.nav-liens a.actif { color: var(--texte); border-color: var(--violet); }
.nav-droite { margin-left: auto; display: flex; align-items: center; gap: 1.3rem; }
.en-ligne {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--titre); font-weight: 500; letter-spacing: .12em;
  font-size: .95rem; text-transform: uppercase;
}
.point {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--vert); box-shadow: 0 0 10px var(--vert);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .4; } }

.btn {
  font-family: var(--corps); font-weight: 800; font-size: 1rem;
  text-decoration: none; cursor: pointer; border: none;
  padding: .75rem 1.6rem; border-radius: var(--rayon);
  display: inline-flex; align-items: center; gap: .6rem;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-violet {
  background: var(--violet); color: #fff;
  box-shadow: 0 6px 24px var(--violet-glow);
}
.btn-violet:hover, .btn-violet:focus-visible {
  background: #6377ff; box-shadow: 0 8px 30px var(--violet-glow);
}
.btn-sombre {
  background: rgba(23, 28, 59, .85); color: var(--texte);
  border: 1px solid var(--trait);
}
.btn-sombre:hover, .btn-sombre:focus-visible { border-color: var(--violet-clair); }
.btn svg { width: 19px; height: 19px; flex: none; }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; padding: 9px;
}
.burger span {
  display: block; height: 2px; background: var(--texte);
  margin: 6px 0; border-radius: 2px;
}

/* ===== Héros ===== */
.heros {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 0 40px;
  background:
    radial-gradient(ellipse 90% 60% at 70% 20%, rgba(80, 100, 251, .22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(139, 154, 255, .10), transparent 60%),
    linear-gradient(180deg, #10132A 0%, #141838 55%, #10132A 100%);
  overflow: hidden;
}
/* Remplacez ce bloc par une vraie capture de votre serveur :
   .heros-image { background-image: url("media/hero-basewars.jpg"); }   */
.heros-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .35;
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 96%);
          mask-image: linear-gradient(180deg, #000 40%, transparent 96%);
}
/* Silhouette de bases / skyline en bas du héros */
.skyline {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 1;
  width: 100%; height: auto; color: #0B0E20; opacity: .92;
}
.heros-int { position: relative; z-index: 2; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--titre); font-weight: 600; font-size: .8rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--violet-clair);
  border: 1px solid var(--trait); border-radius: 999px;
  padding: .45rem 1.2rem;
  background: rgba(23, 28, 59, .6);
  margin-bottom: 1.6rem;
}
.heros-titre-ligne {
  display: flex; align-items: center; gap: 1.4rem; margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.heros-logo {
  width: 96px; height: 96px; border-radius: 50%;
  border: 3px solid rgba(139,154,255,.4);
  background: radial-gradient(circle at 35% 30%, #262E63, #10132A);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-clair);
  box-shadow: 0 0 30px rgba(80,100,251,.3);
  flex: none;
}
.heros-logo svg { width: 50px; height: 50px; }
h1 {
  font-family: var(--titre); font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1; letter-spacing: .02em; text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 18px rgba(139, 154, 255, .85),
    0 0 55px rgba(80, 100, 251, .55);
}
.heros p {
  max-width: 54ch; color: var(--texte-70);
  font-size: 1.1rem; margin-bottom: 2rem; font-weight: 600;
}
.heros-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.heros-actions .en-ligne { margin-left: .6rem; }
.heros-actions .en-ligne strong {
  font-size: 1.5rem; font-weight: 700; margin-right: .2rem;
}

/* Cartes serveurs (façon sélecteur Cosmos) */
.selecteur {
  position: relative; z-index: 3;
  margin-top: 5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem;
}
.carte-srv {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(23, 28, 59, .8);
  border: 1px solid var(--trait); border-radius: var(--rayon);
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.carte-srv:hover, .carte-srv:focus-visible { transform: translateY(-3px); border-color: var(--violet-clair); }
.carte-srv.actif {
  border-color: var(--violet);
  box-shadow: 0 0 0 1px var(--violet), 0 10px 34px rgba(80,100,251,.28);
  background: rgba(28, 34, 72, .9);
}
.carte-srv .pastille {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #6B7DFF, #2A3475);
  border: 2px solid rgba(139,154,255,.3);
}
.carte-srv .pastille svg { width: 22px; height: 22px; }
.carte-srv h3 {
  font-family: var(--corps); font-weight: 800; font-size: 1.05rem;
  letter-spacing: .01em;
}
.carte-srv .sous {
  display: flex; align-items: center; gap: .45rem;
  font-size: .9rem; color: var(--texte-70); font-weight: 600;
}
.carte-srv .sous .point { width: 7px; height: 7px; }
.carte-srv .sous .bientot { color: var(--violet-clair); font-style: italic; }

/* ===== Sections ===== */
section { position: relative; padding: 6.5rem 0; }
.pilule {
  display: inline-block;
  font-family: var(--titre); font-weight: 600; font-size: .78rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--violet-clair);
  border: 1px solid var(--trait); border-radius: 999px;
  padding: .4rem 1.2rem; background: rgba(23,28,59,.6);
  margin-bottom: 1.2rem;
}
h2 {
  font-family: var(--titre); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.15;
  letter-spacing: .02em;
}
h2 .accent { color: var(--violet-clair); }
.entete { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; position: relative; z-index: 2; }
.entete p { color: var(--texte-70); margin-top: 1rem; font-weight: 600; }

/* ===== Gameplay ===== */
.grille-jeu {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.carte-jeu {
  background: var(--carte); border: 1px solid var(--trait);
  border-radius: var(--rayon); padding: 1.9rem 1.6rem;
  transition: border-color .2s, transform .15s;
}
.carte-jeu:hover { border-color: var(--violet-clair); transform: translateY(-4px); }
.carte-jeu .icone {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(80,100,251,.16); color: var(--violet-clair);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.carte-jeu .icone svg { width: 26px; height: 26px; }
.carte-jeu h3 {
  font-family: var(--titre); font-weight: 600; font-size: 1.1rem;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem;
}
.carte-jeu p { color: var(--texte-70); font-size: .98rem; }

/* ===== Qui sommes-nous ===== */
.grille-atouts {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
  margin-bottom: 3.5rem;
}
.atout {
  background: var(--carte); border: 1px solid var(--trait);
  border-radius: var(--rayon); padding: 1.8rem 1.7rem;
  transition: border-color .2s, transform .15s;
}
.atout:hover { border-color: var(--violet-clair); transform: translateY(-3px); }
.atout h3 {
  font-family: var(--titre); font-weight: 600; font-size: 1.1rem;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem;
}
.atout p { color: var(--texte-70); font-size: 1rem; }
.grille-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
  text-align: center;
}
.stat {
  background: var(--carte); border: 1px solid var(--trait);
  border-radius: var(--rayon); padding: 1.8rem 1rem;
}
.stat b {
  font-family: var(--titre); font-weight: 700; font-size: 2.4rem;
  color: var(--violet-clair); display: block; line-height: 1.1;
  text-shadow: 0 0 22px var(--violet-glow);
}
.stat span { color: var(--texte-70); font-weight: 700; font-size: .98rem; }

/* ===== Bannière Discord ===== */
.discord {
  position: relative; z-index: 2;
  border-radius: 18px; padding: 3.5rem 3.2rem;
  background:
    radial-gradient(ellipse 55% 120% at 85% 50%, rgba(80,100,251,.35), transparent 60%),
    linear-gradient(130deg, #1B2150, #141838 65%);
  border: 1px solid rgba(139, 154, 255, .3);
  box-shadow: 0 0 60px rgba(80, 100, 251, .22), inset 0 0 60px rgba(80,100,251,.06);
  display: flex; align-items: center; gap: 2.5rem; justify-content: space-between;
  flex-wrap: wrap;
}
.discord h2 { max-width: none; margin-bottom: 1.4rem; font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
.discord > div:first-child { min-width: 0; }
.discord-icone {
  width: 150px; height: 150px; flex: none;
  color: #fff;
  background: linear-gradient(145deg, #6B7DFF, #4353D9);
  border-radius: 34px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 50px rgba(80, 100, 251, .5), inset 0 -8px 20px rgba(0,0,0,.25), inset 0 6px 14px rgba(255,255,255,.25);
  transform: rotate(-6deg);
}
.discord-icone svg { width: 84px; height: 84px; }

/* ===== Étapes ===== */
.etapes-ligne {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.etapes-ligne::before {
  content: ""; position: absolute; top: 34px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: .55;
}
.etape { text-align: center; position: relative; }
.etape-icone {
  width: 68px; height: 68px; margin: 0 auto 1.6rem;
  border-radius: 50%;
  border: 1px solid var(--violet-clair);
  background: var(--fond);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-clair);
  box-shadow: 0 0 24px rgba(80,100,251,.35);
  position: relative; z-index: 2;
}
.etape-icone svg { width: 30px; height: 30px; }
.etape .num {
  font-family: var(--titre); font-weight: 600; font-size: .82rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--violet-clair);
  display: block; margin-bottom: .5rem;
}
.etape h3 {
  font-family: var(--titre); font-weight: 600; font-size: 1.2rem;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .7rem;
}
.etape p { color: var(--texte-70); font-size: 1rem; max-width: 34ch; margin-inline: auto; }
.etape a { color: var(--violet-clair); font-weight: 700; }

/* ===== Pied de page ===== */
footer { border-top: 1px solid var(--trait); padding: 0 0 2.2rem; position: relative; }
.pied-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.4rem 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--trait); margin-bottom: 2.8rem;
}
.pied-nav .nav-liens { margin-inline: auto; }
.reseaux { display: flex; gap: 1.1rem; }
.reseaux a { color: var(--texte-70); transition: color .2s; }
.reseaux a:hover, .reseaux a:focus-visible { color: var(--violet-clair); }
.reseaux svg { width: 22px; height: 22px; }
.pied-colonnes {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 3rem;
  margin-bottom: 2.8rem;
}
.pied-colonnes h4 {
  font-family: var(--titre); font-weight: 600; font-size: 1rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.projets-mini { display: flex; gap: .7rem; }
.projets-mini .pastille {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: radial-gradient(circle at 32% 28%, #6B7DFF, #2A3475);
  border: 2px solid rgba(139,154,255,.25);
}
.projets-mini .pastille svg { width: 20px; height: 20px; }
.liens-utiles { list-style: none; }
.liens-utiles li { margin-bottom: .7rem; }
.liens-utiles a {
  text-decoration: none; color: var(--texte-70); font-weight: 600;
  transition: color .2s;
}
.liens-utiles a:hover, .liens-utiles a:focus-visible { color: var(--violet-clair); }
.pied-bas {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--trait); padding-top: 1.8rem;
  color: var(--texte-45); font-size: .95rem; font-weight: 600;
}

/* ===== Bandeau cookies ===== */
.cookies {
  position: fixed; z-index: 200; left: 50%; bottom: 1.2rem;
  translate: -50% 0;
  width: min(720px, 94%);
  background: var(--fond-3); border: 1px solid var(--trait);
  border-radius: 16px; padding: 1.3rem 1.6rem;
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  box-shadow: 0 16px 50px rgba(0,0,0,.55);
}
.cookies-icone {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: rgba(80,100,251,.18); color: var(--violet-clair);
  display: flex; align-items: center; justify-content: center;
}
.cookies-icone svg { width: 24px; height: 24px; }
.cookies-texte { flex: 1 1 300px; }
.cookies-texte b { display: block; font-size: 1.02rem; }
.cookies-texte p { font-size: .92rem; color: var(--texte-70); font-weight: 600; }
.cookies .btn { padding: .55rem 1.25rem; font-size: .95rem; }
.cookies[hidden] { display: none; }

:focus-visible { outline: 2px solid var(--violet-clair); outline-offset: 3px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grille-jeu { grid-template-columns: repeat(2, 1fr); }
  .grille-atouts { grid-template-columns: 1fr; }
  .etapes-ligne { grid-template-columns: 1fr; gap: 2.6rem; }
  .etapes-ligne::before { display: none; }
  .pied-colonnes { grid-template-columns: 1fr; gap: 2rem; }
  .discord { justify-content: center; text-align: center; }
  .discord h2 { margin-inline: auto; }
}
@media (max-width: 760px) {
  .nav-liens, .nav .en-ligne { display: none; }
  .burger { display: block; }
  .nav-int { justify-content: space-between; }
  .nav-droite { margin-left: 0; }
  .nav.ouverte .nav-liens {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(16,19,42,.98); padding: 1.6rem 6%;
    border-bottom: 1px solid var(--trait);
  }
  .selecteur { margin-top: 3.5rem; }
  .grille-jeu, .grille-stats { grid-template-columns: 1fr; }
  section { padding: 4.5rem 0; }
  .heros { padding-top: 105px; }
  .heros-logo { width: 72px; height: 72px; }
}

/* ===== Positions des décors (accueil) ===== */
.decor-1 { top: 640px; left: 4%; width: 90px; height: 90px; }
.decor-2 { top: 1250px; right: 6%; width: 70px; height: 70px; animation-delay: -5s; }
.decor-3 { top: 2100px; left: 8%; width: 56px; height: 56px; animation-delay: -9s; }
.decor-4 { top: 2750px; right: 10%; width: 80px; height: 80px; animation-delay: -3s; }

/* ============================================
   PAGE RÈGLEMENT
   ============================================ */
/* ===== En-tête de page ===== */
.entete-page {
  position: relative; padding: 170px 0 70px;
  background:
    radial-gradient(ellipse 90% 70% at 60% 0%, rgba(80, 100, 251, .2), transparent 60%),
    linear-gradient(180deg, #10132A 0%, #141838 70%, #10132A 100%);
  text-align: center;
  overflow: hidden;
}
.entete-page h1 {
  font-family: var(--titre); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 0 18px rgba(139, 154, 255, .85), 0 0 55px rgba(80, 100, 251, .55);
}
.entete-page h1 .accent { color: var(--violet-clair); }
.entete-page p {
  max-width: 60ch; margin: 1.2rem auto 0;
  color: var(--texte-70); font-weight: 600;
}

/* ===== Sommaire ===== */
.sommaire {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
  margin-top: 2.4rem;
}
.sommaire a {
  font-family: var(--titre); font-weight: 500; font-size: .88rem;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--texte-70);
  border: 1px solid var(--trait); border-radius: 999px;
  padding: .5rem 1.2rem; background: rgba(23,28,59,.6);
  transition: color .2s, border-color .2s;
}
.sommaire a:hover, .sommaire a:focus-visible { color: var(--texte); border-color: var(--violet-clair); }

/* ===== Corps du règlement ===== */
main { position: relative; padding: 4.5rem 0 6rem; }
.colonne-regles { max-width: 860px; margin-inline: auto; position: relative; z-index: 2; }

.bloc-regles {
  background: var(--carte); border: 1px solid var(--trait);
  border-radius: 16px; padding: 2.4rem 2.4rem 1.4rem;
  margin-bottom: 2rem;
  scroll-margin-top: 100px;
}
.bloc-titre {
  display: flex; align-items: center; gap: 1.1rem;
  margin-bottom: 1.6rem;
}
.bloc-titre .icone {
  width: 52px; height: 52px; border-radius: 12px; flex: none;
  background: rgba(80,100,251,.16); color: var(--violet-clair);
  display: flex; align-items: center; justify-content: center;
}
.bloc-titre .icone svg { width: 26px; height: 26px; }
.bloc-titre h2 {
  font-family: var(--titre); font-weight: 600; text-transform: uppercase;
  font-size: 1.45rem; letter-spacing: .05em;
}
.bloc-titre .num-bloc {
  font-family: var(--titre); font-weight: 700; font-size: .85rem;
  letter-spacing: .3em; color: var(--violet-clair); display: block;
}
.regle {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.05rem 0; border-top: 1px solid var(--trait);
}
.regle .num {
  font-family: var(--titre); font-weight: 700; font-size: .92rem;
  color: var(--violet-clair); flex: none; width: 2.6rem;
  padding-top: .15rem; letter-spacing: .05em;
}
.regle p { color: var(--texte-70); font-weight: 600; }
.regle p b { color: var(--texte); }
.interdit { color: var(--rouge); font-weight: 800; }

.note {
  background: rgba(80,100,251,.1); border: 1px solid rgba(139,154,255,.3);
  border-radius: var(--rayon); padding: 1.2rem 1.4rem;
  margin: 0 0 2rem; color: var(--texte-70); font-weight: 600;
}
.note b { color: var(--violet-clair); }

/* Barème des sanctions */
.bareme { list-style: none; counter-reset: sanction; margin-bottom: 1rem; }
.bareme li {
  counter-increment: sanction;
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 0; border-top: 1px solid var(--trait);
  color: var(--texte-70); font-weight: 600;
}
.bareme li::before {
  content: counter(sanction);
  font-family: var(--titre); font-weight: 700;
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(80,100,251,.16); color: var(--violet-clair);
}
.bareme li b { color: var(--texte); }

.cta-fin {
  text-align: center; margin-top: 3rem;
}
.cta-fin p { color: var(--texte-70); font-weight: 600; margin-bottom: 1.4rem; }


.intro-sanctions { color: var(--texte-70); font-weight: 600; margin-bottom: 1rem; }

/* Positions des décors (règlement) */
.decor-r1 { top: 480px; left: 3%; width: 80px; height: 80px; }
.decor-r2 { top: 1400px; right: 4%; width: 64px; height: 64px; animation-delay: -6s; }

/* Variable utilisée par la page règlement */
:root { --rouge: #F06565; }

/* Responsive spécifique au règlement */
@media (max-width: 760px) {
  .entete-page { padding-top: 130px; }
  .bloc-regles { padding: 1.6rem 1.4rem .8rem; }
  .pied-nav .nav-liens { display: flex; margin-inline: 0; }
}
