/* RESET DE BASE */
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:"Inter",Arial,sans-serif;background:#000;color:#fff;
  min-height:100vh;overflow-x:hidden;position:relative;text-rendering:geometricPrecision;
}

/* NAVBAR */
header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:#fff;color:#000;
  display:flex;align-items:center;justify-content:space-between;padding:20px 40px;
  font-weight:600;letter-spacing:-.02em;box-shadow:0 2px 10px rgba(0,0,0,.2)}
.brand{color:#000;text-decoration:none;font-size:1.3rem;font-weight:700;text-transform:uppercase}
nav{position:absolute;left:50%;transform:translateX(-50%);display:flex;gap:3rem}
nav a{color:#000;text-decoration:none;font-size:1rem;opacity:.8;transition:.2s}
nav a:hover{opacity:1;transform:scale(1.05)}
.right-slot{width:100px}

/* HERO ACCUEIL */
main{position:relative;z-index:10;padding-top:140px;min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center}
.hero-inner{max-width:700px;padding:2rem}
.title{font-size:clamp(2.5rem,3vw,3rem);font-weight:700;color:#fff;margin-bottom:1rem;text-shadow:0 0 30px rgba(180,130,255,.8)}
.subtitle{font-size:1.1rem;color:rgba(255,255,255,.75);line-height:1.6;max-width:500px;margin:0 auto}

/* FOND FLEURS */
.background-layer{position:fixed;inset:0;overflow:hidden;z-index:0;pointer-events:none;
  background:radial-gradient(circle at 50% 30%,rgba(128,0,255,.15) 0%,rgba(0,0,0,0) 60%)}
.flower{position:absolute;width:200px;height:200px;background:url("image/FAE.png") no-repeat center/contain;opacity:.4;animation:floatUp 6s ease-in-out infinite;
  filter:drop-shadow(0 0 10px rgba(195,140,255,.8)) drop-shadow(0 0 40px rgba(150,90,255,.6))}
.flower.sm{width:120px;height:120px;opacity:.3;animation-duration:7s}
.flower.lg{width:260px;height:260px;opacity:.5;animation-duration:5s}
@keyframes floatUp{0%,100%{transform:translateY(0)}50%{transform:translateY(-40px)}}

/* SECTION ACTU (tweet) */
.section-reseaux{position:relative;z-index:10;padding:2rem 1rem 4rem;max-width:1200px;margin:0 auto;color:#fff}
.section-title{font-size:1.2rem;font-weight:600;color:#fff;margin-bottom:1rem;display:flex;align-items:center;gap:.5rem;text-shadow:0 0 20px rgba(180,130,255,.6);letter-spacing:-.03em}
.section-title .accent{background:radial-gradient(circle at 30% 30%,#d8bfff 0%,#8a5bff 60%);-webkit-background-clip:text;color:transparent;font-weight:700}
.twitter-card{background:rgba(15,15,20,.6);border:1px solid rgba(180,130,255,.4);box-shadow:0 0 20px rgba(180,130,255,.4),0 30px 80px rgba(0,0,0,.8);
  border-radius:16px;padding:1rem 1rem .5rem;max-width:480px;width:100%;backdrop-filter:blur(8px)}
.tweet-embed{border-radius:12px;overflow:hidden;background:rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.07)}

/* PAGE ROSTERS (Effectif) */
.rosters-main{position:relative;z-index:10;padding-top:140px;min-height:100vh;display:flex;flex-direction:column;align-items:center;color:#fff}
.rosters-title{font-size:clamp(2rem,3.2vw,2.6rem);margin-bottom:2rem;text-align:center;text-shadow:0 0 25px rgba(180,130,255,.7)}
.rosters-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:3rem;width:100%;max-width:1100px}
.single-center{justify-content:center}
.roster-card{width:340px;background:rgba(20,20,30,.6);border-radius:20px;padding:2rem 1rem 1.5rem;text-align:center;backdrop-filter:blur(10px);transition:.3s}
.roster-card:hover{transform:translateY(-8px)}
.roster-name{font-size:1.6rem;font-weight:700;margin-bottom:.3rem}
.roster-sub{font-size:1rem;color:rgba(255,255,255,.7);margin-bottom:1.5rem}
.roster-logo{width:150px;height:auto;margin-bottom:1.5rem}
.roster-link{display:inline-block;padding:.6rem 1.4rem;border-radius:12px;text-decoration:none;font-weight:600;transition:.3s}

/* Variantes de couleur (cartes Accueil/Effectif) */
.roster-card.violet{border:1px solid rgba(180,130,255,.6);box-shadow:0 0 25px rgba(180,130,255,.5)}
.violet .roster-link{background:rgba(180,130,255,.2);color:#caa8ff;border:1px solid rgba(180,130,255,.5)}
.violet .roster-link:hover{background:rgba(180,130,255,.4);box-shadow:0 0 15px rgba(180,130,255,.7)}

.roster-card.red{border:1px solid rgba(255,100,70,.6);box-shadow:0 0 25px rgba(255,70,40,.5)}
.red .roster-link{background:rgba(255,80,40,.2);color:#ff7a59;border:1px solid rgba(255,90,50,.6)}
.red .roster-link:hover{background:rgba(255,80,40,.4);box-shadow:0 0 15px rgba(255,80,40,.7)}

.roster-card.pink{
  border:1px solid rgba(255,105,180,.6);
  box-shadow:0 0 25px rgba(255,105,180,.45),0 30px 80px rgba(0,0,0,.75);
  background:radial-gradient(circle at 20% 20%, rgba(255,120,200,.28) 0%, rgba(20,0,25,.12) 60%),
             linear-gradient(to top, rgba(25,0,15,.85) 0%, rgba(60,0,45,.6) 60%);
}
.roster-card.pink .roster-link{background:rgba(255,105,180,.2);color:#ffd7eb;border:1px solid rgba(255,105,180,.6)}
.roster-card.pink .roster-link:hover{background:rgba(255,105,180,.38);box-shadow:0 0 16px rgba(255,105,180,.75)}

/* PAGE RESEAUX */
.reseaux-page-wrap{position:relative;z-index:10;padding-top:140px;min-height:80vh;color:#fff;display:flex;flex-direction:column;align-items:center}
.social-grid{width:100%;max-width:1100px;padding:0 16px;display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:0 auto 36px}
.social-card{--accent:#888;position:relative;border-radius:14px;overflow:hidden;background:rgba(15,15,20,.65);
  border:1px solid color-mix(in oklab,var(--accent),#fff 10%);box-shadow:0 0 16px color-mix(in oklab,var(--accent),#000 30%);
  backdrop-filter:blur(6px);padding:14px;display:flex;flex-direction:column;align-items:center;gap:12px;transition:.25s}
.social-card:hover{transform:translateY(-4px);box-shadow:0 0 25px color-mix(in oklab,var(--accent),#fff 15%),0 0 60px rgba(0,0,0,.8)}
.social-img{width:120px;height:120px;border-radius:12px;object-fit:cover;object-position:center;display:block;transition:.3s}
.social-card:hover .social-img{transform:scale(1.08)}
.social-btn{display:inline-block;padding:8px 14px;border-radius:10px;text-decoration:none;font-weight:700;font-size:.85rem;color:#fff;background:var(--accent);
  border:1px solid color-mix(in oklab,var(--accent),#000 40%);box-shadow:0 0 10px color-mix(in oklab,var(--accent),#000 40%);transition:.25s}
.social-btn:hover{transform:translateY(-2px);filter:brightness(1.1)}
.platform-discord{--accent:#5865F2}.platform-twitch{--accent:#9146FF}.platform-youtube{--accent:#FF0033}
.platform-tiktok{--accent:#25F4EE}.platform-x{--accent:#1D9BF0}.platform-instagram{--accent:#E1306A}
.platform-youtube .social-img{object-fit:contain!important}
@media (max-width:900px){.social-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.social-grid{grid-template-columns:1fr}.social-img{width:150px;height:150px}}

/* ======= PAGE NYX – Cartes joueurs ======= */
.nyx-page{position:relative;z-index:10;padding-top:140px;padding-bottom:4rem;min-height:100vh;color:#fff;display:flex;flex-direction:column;align-items:center;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Inter",Roboto,"Segoe UI",sans-serif;text-rendering:geometricPrecision}
.nyx-section-title{font-size:1.6rem;font-weight:600;letter-spacing:-.03em;color:#fff;text-align:center;margin:2rem 0 1.5rem;text-shadow:0 0 30px rgba(255,100,60,.8)}
.nyx-grid{width:100%;max-width:1400px;display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;margin-bottom:2rem}

.nyx-card{position:relative;width:230px;height:310px;border-radius:14px;padding:16px;
  background:radial-gradient(circle at 20% 20%,rgba(255,90,40,.35) 0%,rgba(20,0,0,.15) 60%),linear-gradient(to top,rgba(20,0,0,.9) 0%,rgba(60,0,0,.7) 60%);
  border:2px solid rgba(255,90,40,.4);box-shadow:0 0 15px rgba(255,90,40,.4),0 30px 60px rgba(0,0,0,.9);
  overflow:visible;cursor:default;display:flex;flex-direction:column;justify-content:flex-end;transition:.25s;animation:nyx-soft-breathe 4s ease-in-out infinite}
@keyframes nyx-soft-breathe{0%,100%{box-shadow:0 0 15px rgba(255,90,40,.4),0 30px 60px rgba(0,0,0,.9)}50%{box-shadow:0 0 22px rgba(255,120,80,.6),0 40px 80px rgba(0,0,0,.95)}}
.nyx-card:hover{transform:translateY(-6px) scale(1.03);box-shadow:0 0 25px rgba(255,120,80,.7),0 40px 80px rgba(0,0,0,.95);border:2px solid rgba(255,120,80,.7)}
.nyx-card-number{position:absolute;top:20px;right:10px;font-size:92px;font-weight:700;line-height:.8;color:rgba(255,255,255,.4);
  text-shadow:0 0 12px rgba(255,255,255,.6),0 0 32px rgba(255,140,80,.6),0 20px 40px rgba(0,0,0,.9);pointer-events:none;user-select:none;transform-origin:top right;transition:.25s}
.nyx-card:hover .nyx-card-number{transform:translate(4px,-4px) scale(1.05);text-shadow:0 0 16px rgba(255,255,255,.9),0 0 38px rgba(255,150,100,.9),0 25px 50px rgba(0,0,0,.95)}

/* Badge IGL */
.nyx-igl-badge{position:absolute;left:16px;bottom:16px;padding:2px 8px;background:rgba(255,255,255,.9);color:#000;font-size:.6rem;font-weight:700;text-align:center;line-height:1.2;border-radius:3px;
  box-shadow:0 0 10px rgba(255,255,255,.8),0 0 30px rgba(255,120,80,.7);letter-spacing:-.03em;border:1px solid rgba(0,0,0,.6);text-transform:uppercase;pointer-events:none}

/* Infos carte */
.nyx-info-block{position:relative;z-index:2;display:flex;flex-direction:column;color:#fff;text-shadow:0 0 10px rgba(0,0,0,.8)}
.nyx-role-line{font-size:.8rem;font-weight:500;color:rgba(255,255,255,.75);margin-bottom:.6rem;line-height:1.2}
.nyx-name-row{margin-bottom:.5rem}
.nyx-name-line{display:flex;align-items:center;flex-wrap:wrap;column-gap:.5rem;row-gap:.5rem}
.nyx-name-text{font-size:1.1rem;font-weight:600;color:#fff;letter-spacing:-.03em;line-height:1.2}

/* ⚡ Badge mot-clé Nyx (glow rouge) — CORRIGÉ */
.nyx-tagline{font-size:.8rem;font-weight:500;color:rgba(255,255,255,.9);line-height:1.3;text-shadow:0 0 8px rgba(255,120,80,.8)}
.nyx-tagword{
  display:inline-block;
  background:rgba(255,120,80,.15);
  border:1px solid rgba(255,120,80,.6);
  color:#fff;
  border-radius:6px;
  padding:3px 8px;
  line-height:1;
  font-size:.7rem;
  font-weight:500;
  box-shadow:0 0 12px rgba(255,120,80,.6);
  text-shadow:0 0 8px rgba(255,120,80,.8);
}

/* Drapeaux styles intégrés (FR/VN) */
.nyx-flag-fr{width:22px;height:14px;border-radius:2px;overflow:hidden;border:1px solid rgba(255,255,255,.4);box-shadow:0 0 8px rgba(255,255,255,.6);display:flex}
.nyx-flag-fr span{flex:1}
.nyx-flag-fr .b{background:#002395}.nyx-flag-fr .w{background:#ffffff}.nyx-flag-fr .r{background:#ED2939}
.nyx-flag-vn{width:22px;height:14px;border-radius:2px;overflow:hidden;border:1px solid rgba(255,255,255,.4);box-shadow:0 0 8px rgba(255,255,255,.6);background:#da251d;position:relative}
.nyx-flag-vn::after{content:"★";position:absolute;left:50%;top:50%;transform:translate(-50%,-55%);color:#ffec00;font-size:10px;line-height:10px;font-weight:700;text-shadow:0 0 4px rgba(0,0,0,.8)}

/* Silhouettes par défaut NYX */
.nyx-silhouette{position:absolute;left:0;right:0;top:18px;height:230px;pointer-events:none;opacity:.85}
.nyx-silhouette.staff{
  background:none!important;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-90-70h180v40H60V10zm-5 142l-45 90v180l45 45h120l45-45V242l-45-90H55z' fill='%23fff'/></svg>") center/160px no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-90-70h180v40H60V10zm-5 142l-45 90v180l45 45h120l45-45V242l-45-90H55z' fill='%23fff'/></svg>") center/160px no-repeat;
  background-color:rgba(255,160,120,.22);filter:drop-shadow(0 0 16px rgba(255,120,80,.45))}
.nyx-silhouette.player{
  background:none!important;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-27 72l-45 90v180l45 45h54l45-45V242l-45-90H123z' fill='%23fff'/></svg>") center/160px no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-27 72l-45 90v180l45 45h54l45-45V242l-45-90H123z' fill='%23fff'/></svg>") center/160px no-repeat;
  background-color:rgba(255,160,120,.22);filter:drop-shadow(0 0 16px rgba(255,120,80,.45))}

/* Image perso NYX */
.nyx-photo{position:absolute;left:0;right:0;top:18px;height:230px;display:flex;justify-content:center;align-items:flex-start;pointer-events:none}
.nyx-photo img{height:230px;object-fit:contain;opacity:.92;filter:drop-shadow(0 0 14px rgba(255,120,80,.45))}

/* ======= PAGE LUMERIS – mêmes gabarits, glow violet ======= */
.lum-card{position:relative;width:230px;height:310px;border-radius:14px;padding:16px;
  background:radial-gradient(circle at 20% 20%, rgba(150,120,255,.28) 0%, rgba(15,0,40,.16) 60%),
             linear-gradient(to top, rgba(20,0,45,.88) 0%, rgba(60,30,120,.55) 60%);
  border:2px solid rgba(150,120,255,.45);box-shadow:0 0 16px rgba(150,120,255,.45),0 30px 60px rgba(0,0,0,.9);
  overflow:visible;cursor:default;display:flex;flex-direction:column;justify-content:flex-end;transition:.25s;animation:lum-breathe 4s ease-in-out infinite}
@keyframes lum-breathe{0%,100%{box-shadow:0 0 16px rgba(150,120,255,.45),0 30px 60px rgba(0,0,0,.9)}50%{box-shadow:0 0 22px rgba(180,150,255,.65),0 40px 80px rgba(0,0,0,.95)}}
.lum-card:hover{transform:translateY(-6px) scale(1.03);box-shadow:0 0 26px rgba(190,165,255,.75),0 40px 90px rgba(0,0,0,.95);border:2px solid rgba(190,165,255,.75)}

.lum-card-number{position:absolute;top:18px;right:10px;font-size:92px;font-weight:800;line-height:.8;color:rgba(255,255,255,.42);
  text-shadow:0 0 14px rgba(255,255,255,.9),0 0 36px rgba(170,140,255,.75),0 18px 40px rgba(0,0,0,.9);pointer-events:none}

.lum-silhouette{position:absolute;left:0;right:0;top:18px;height:230px;pointer-events:none;opacity:.88}
.lum-silhouette.staff{
  background:none!important;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-90-70h180v40H60V10zm-5 142l-45 90v180l45 45h120l45-45V242l-45-90H55z' fill='%23fff'/></svg>") center/160px no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-27 72l-45 90v180l45 45h54l45-45V242l-45-90H123z' fill='%23fff'/></svg>") center/160px no-repeat;
  background-color:rgba(170,140,255,.22);filter:drop-shadow(0 0 16px rgba(170,140,255,.45))}
.lum-silhouette.player{
  background:none!important;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-27 72l-45 90v180l45 45h54l45-45V242l-45-90H123z' fill='%23fff'/></svg>") center/160px no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 500' xmlns='http://www.w3.org/2000/svg'><path d='M150 80c35 0 63-28 63-63S185 0 150 0 87 28 87 63s28 63 63 63zm-27 72l-45 90v180l45 45h54l45-45V242l-45-90H123z' fill='%23fff'/></svg>") center/160px no-repeat;
  background-color:rgba(170,140,255,.22);filter:drop-shadow(0 0 16px rgba(170,140,255,.45))}

/* Image perso LUMERIS (mêmes dimensions que NYX) */
.lum-photo{position:absolute;left:0;right:0;top:18px;height:230px;display:flex;justify-content:center;align-items:flex-start;pointer-events:none}
.lum-photo img{height:230px;width:auto;object-fit:contain;opacity:.92;filter:drop-shadow(0 0 14px rgba(170,140,255,.55))}

/* BLOCS INFOS LUMERIS */
.lum-info-block{position:relative;z-index:2;display:flex;flex-direction:column;color:#fff;text-shadow:0 0 10px rgba(0,0,0,.8)}
.lum-role-line{font-size:.82rem;font-weight:500;color:rgba(255,255,255,.78);margin-bottom:.6rem}
.lum-name-row{margin-bottom:.5rem}
.lum-name-line{display:flex;align-items:center;flex-wrap:wrap;column-gap:.5rem;row-gap:.5rem}
.lum-name-text{font-size:1.12rem;font-weight:700;letter-spacing:-.02em}
.lum-tagline{font-size:.8rem;font-weight:500;color:rgba(255,255,255,.95)}
.lum-tagword{display:inline-block;background:rgba(170,140,255,.18);border:1px solid rgba(190,165,255,.6);color:#fff;border-radius:6px;padding:3px 8px;line-height:1;font-size:.7rem;
  box-shadow:0 0 12px rgba(190,165,255,.6);text-shadow:0 0 8px rgba(190,165,255,.8)}

/* DRAPEAUX GÉNÉRIQUES (FR / BE / MU) + container */
.flags{display:flex;gap:4px;align-items:center}
.flag-fr,.flag-be{display:flex;width:18px;height:12px;overflow:hidden;border-radius:2px}
.flag-fr span:nth-child(1){flex:1;background:#0055A4}
.flag-fr span:nth-child(2){flex:1;background:#ffffff}
.flag-fr span:nth-child(3){flex:1;background:#EF4135}
.flag-be span:nth-child(1){flex:1;background:#000000}
.flag-be span:nth-child(2){flex:1;background:#FFD90C}
.flag-be span:nth-child(3){flex:1;background:#EF4135}
.flag-mu{display:flex;flex-direction:column;width:18px;height:12px;overflow:hidden;border-radius:2px}
.flag-mu span:nth-child(1){flex:1;background:#EA2839}
.flag-mu span:nth-child(2){flex:1;background:#1A206D}
.flag-mu span:nth-child(3){flex:1;background:#FFD500}
.flag-mu span:nth-child(4){flex:1;background:#00A550}

/* RESPONSIVE */
@media (max-width:1100px){.nyx-grid{max-width:900px}}
@media (max-width:900px){.nyx-card,.lum-card{width:200px;height:290px}}
@media (max-width:600px){.nyx-grid{max-width:360px;flex-direction:column;align-items:center}}

/* ==== GLow renforcé pour les cartes rosters ==== */

/* Lumeris – accepte .violet ou .lumeris */
.roster-card.violet,
.roster-card.lumeris {
  border: 1px solid rgba(180,130,255,.65) !important;
  box-shadow: 0 0 26px rgba(180,130,255,.55), 0 30px 60px rgba(0,0,0,.85) !important;
}

.roster-card.violet:hover,
.roster-card.lumeris:hover {
  border-color: rgba(190,165,255,.9) !important;
  box-shadow: 0 0 32px rgba(190,165,255,.75), 0 40px 80px rgba(0,0,0,.9) !important;
  transform: translateY(-6px);
}

/* Nyx – accepte .red ou .nyx */
.roster-card.red,
.roster-card.nyx {
  border: 1px solid rgba(255,90,40,.65) !important;
  box-shadow: 0 0 26px rgba(255,90,40,.55), 0 30px 60px rgba(0,0,0,.85) !important;
}

.roster-card.red:hover,
.roster-card.nyx:hover {
  border-color: rgba(255,120,80,.9) !important;
  box-shadow: 0 0 32px rgba(255,120,80,.75), 0 40px 80px rgba(0,0,0,.9) !important;
  transform: translateY(-6px);
}
/* === HALO externe pour les cartes rosters (même style que Structure) === */
.roster-card { position: relative; z-index: 0; }

/* Calque de halo (derrière la carte) */
.roster-card::before{
  content:"";
  position:absolute;
  inset:-18px;                  /* dépasse pour un halo bien visible */
  border-radius:28px;
  pointer-events:none;
  z-index:-1;                   /* derrière la carte */
  opacity:.75;
  filter: blur(22px);
  transition: opacity .25s, transform .25s;
}

/* Halo violet — Lumeris (.violet ou .lumeris) */
.roster-card.violet::before,
.roster-card.lumeris::before{
  background: radial-gradient(70% 70% at 50% 50%,
              rgba(180,130,255,.65) 0%,
              rgba(180,130,255,.20) 45%,
              rgba(180,130,255,0) 75%);
}

/* Halo rouge — Nyx (.red ou .nyx) */
.roster-card.red::before,
.roster-card.nyx::before{
  background: radial-gradient(70% 70% at 50% 50%,
              rgba(255,100,70,.65) 0%,
              rgba(255,100,70,.20) 45%,
              rgba(255,100,70,0) 75%);
}

/* Un peu plus fort au survol (comme Structure) */
.roster-card:hover::before{
  opacity: 1;
  transform: scale(1.03);
}

/* On renforce aussi le box-shadow existant pour matcher le rendu */
.roster-card.violet,
.roster-card.lumeris{
  border-color: rgba(180,130,255,.7);
  box-shadow: 0 0 26px rgba(180,130,255,.55), 0 30px 60px rgba(0,0,0,.85);
}
.roster-card.red,
.roster-card.nyx{
  border-color: rgba(255,100,70,.7);
  box-shadow: 0 0 26px rgba(255,100,70,.55), 0 30px 60px rgba(0,0,0,.85);
}
/* ✅ Cartes structure = rose (override Nyx rouge) */
.nyx-page .nyx-card.pink {
  background: radial-gradient(circle at 20% 20%, rgba(255,105,180,.28) 0%, rgba(45,0,30,.16) 60%),
              linear-gradient(to top, rgba(40,0,20,.9) 0%, rgba(90,0,60,.6) 60%);
  border: 2px solid rgba(255,105,180,.6);
  box-shadow: 0 0 18px rgba(255,105,180,.55), 0 28px 70px rgba(0,0,0,.9);
}

.nyx-page .nyx-card.pink:hover {
  border-color: rgba(255,140,200,.9);
  box-shadow: 0 0 26px rgba(255,140,200,.75), 0 38px 90px rgba(0,0,0,.95);
}

/* Badge rose */
.nyx-page .pink .nyx-tagword {
  background: rgba(255,105,180,.15);
  border: 1px solid rgba(255,105,180,.6);
  box-shadow: 0 0 12px rgba(255,105,180,.6);
  text-shadow: 0 0 8px rgba(255,105,180,.8);
}
/* Glow violet correct pour silhouettes Lumeris */
.lum-silhouette.staff {
  filter: drop-shadow(0 0 16px rgba(170,140,255,.55)) !important;
}

.lum-silhouette.player {
  filter: drop-shadow(0 0 16px rgba(170,140,255,.55)) !important;
}
/* Glow violet pour les images photo Lumeris */
.lum-photo-img {
  height: 230px;
  width: auto;
  object-fit: contain;
  opacity: .92;
  filter: drop-shadow(0 0 14px rgba(170,140,255,.55)) !important;
}
/* Badge rôle violet Lumeris auto-width */
.lum-role-tag {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content !important;

    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(55, 2, 245, 0.9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: capitalize;

    border: 1px solid rgba(200,170,255,.9);
    box-shadow: 
      0 0 12px rgba(180,150,255,.8),
      0 0 25px rgba(150,100,255,.55);
  
    white-space: nowrap; /* empêche le texte de revenir à la ligne */
}
/* Badge rôle rouge Nyx auto-width */
.nyx-role-tag {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content !important;

    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(165, 39, 1, 0.9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: capitalize;

    border: 1px solid rgba(255,130,90,.9);
    box-shadow:
      0 0 12px rgba(255,120,80,.8),
      0 0 25px rgba(255,80,40,.55);

    white-space: nowrap; /* empêche le texte de casser */
}
/* Badges rôle pour Structure (rose FAE) */
.structure-role-tag {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content !important;

    padding: 4px 12px;
    border-radius: 8px;

    background: rgba(175, 1, 88, 0.75);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: capitalize;

    border: 1px solid rgba(255,140,200,.85);
    box-shadow:
        0 0 12px rgba(255,140,200,.8),
        0 0 26px rgba(255,105,180,.55);

    white-space: nowrap; /* garde un seul mot, pas de retour ligne */
}
.card-link{ display:block; text-decoration:none; color:inherit; }
.card-link > .nyx-card,
.card-link > .lum-card{ cursor:pointer; }
/* =========================
   PAGE JOUEUR — Layout + thèmes
   ========================= */
.player-main{
  position:relative; z-index:10;
  padding-top:140px; padding-bottom:60px;
  min-height:100vh; color:#fff;
  display:flex; justify-content:center;
}
.player-grid{
  width:100%; max-width:1200px; padding:0 16px;
  display:grid; gap:22px;
  grid-template-columns: repeat(12, 1fr);
}

/* Grille responsive :
   - photo full width
   - rang + réseaux 2 colonnes
   - tier list full width */
.panel-photo{ grid-column: 1 / -1; min-height: 320px; }
.panel-half{ grid-column: span 6; }
.panel-tierlist{ grid-column: 1 / -1; }

/* Panels (cadres futuristes) */
.panel{
  position:relative; border-radius:16px; padding:18px;
  background: rgba(15,15,20,.55);
  border:1px solid rgba(255,90,40,.45);                 /* couleur par défaut = rouge (Nyx) */
  box-shadow: 0 0 20px rgba(255,90,40,.35), 0 30px 60px rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
}
.panel-title{
  font-size:1rem; font-weight:700; letter-spacing:-.02em; margin-bottom:12px;
  opacity:.95
}
/* Thèmes (Nyx rouge / Lumeris violet) */
.player-page.theme-red .panel{
  border-color: rgba(255,90,40,.45);
  box-shadow: 0 0 20px rgba(255,90,40,.35), 0 30px 60px rgba(0,0,0,.8);
}
.player-page.theme-violet .panel{
  border-color: rgba(180,130,255,.55);
  box-shadow: 0 0 20px rgba(180,130,255,.40), 0 30px 60px rgba(0,0,0,.85);
}
.player-page.theme-violet .chip{
  background: rgba(180,130,255,.18);
  border: 1px solid rgba(180,130,255,.55);
  box-shadow: 0 0 10px rgba(180,130,255,.45);
}

/* PHOTO bandeau */
.panel-photo{
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.panel-photo img{
  max-height:420px; width:auto; height:auto; object-fit:contain;
  filter: drop-shadow(0 0 16px rgba(255,255,255,.08));
}

/* Peak rank */
.rank-wrap{ display:flex; align-items:center; gap:14px; }
.rank-img{ width:56px; height:56px; object-fit:contain; }
.rank-line{ font-weight:700; font-size:1rem; }
.rank-meta{ font-size:.85rem; opacity:.85 }

/* Réseaux (grille auto-adaptative) */
.panel-socials .socials{
  display:flex; flex-wrap:wrap; gap:10px;
}
.chip{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 12px; border-radius:999px;
  background: rgba(255,120,80,.18);
  border:1px solid rgba(255,120,80,.55);
  color:#fff; font-weight:700; font-size:.85rem;
  box-shadow: 0 0 10px rgba(255,120,80,.45);
  text-decoration:none;
}

/* Tier list */
.tiers{
  display:grid; gap:14px;
  grid-template-columns: repeat(5, 1fr);
}
.tier-col{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:12px; overflow:hidden;
}
.tier-head{
  text-align:center; font-weight:800; letter-spacing:.08em;
  padding:8px 10px; background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.tier-body{ padding:10px; display:flex; flex-direction:column; gap:8px; }
.agent{
  display:flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:10px;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08);
}
.agent img{ width:22px; height:22px; object-fit:contain }

/* Responsive */
@media (max-width: 1000px){
  .panel-half{ grid-column: 1 / -1; }
  .panel-photo img{ max-height:360px; }
}
@media (max-width: 600px){
  .tiers{ grid-template-columns: 1fr; }
  .panel-photo img{ max-height:300px; }
}
/* ===== HERO : photo à gauche, infos à droite ===== */
.player-main .panel-hero{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:28px;
  align-items:center;
  min-height:280px;
}

/* photo du joueur */
.hero-photo img{
  width:100%;
  max-height:260px;
  object-fit:contain;
  opacity:.95;
  filter: drop-shadow(0 0 14px rgba(255,120,80,.45)); /* thème Nyx */
}

/* zone texte */
.hero-info .player-name{
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin:0 0 .6rem;
  font-weight:800;
  letter-spacing:-.02em;
}

.hero-info .badges{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 .6rem}
.tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  line-height:1;
  border:1px solid rgba(255,120,80,.55);
  background:rgba(255,120,80,.12);
  box-shadow:0 0 10px rgba(255,120,80,.35);
}

/* petite bio */
.bio{color:rgba(255,255,255,.82);max-width:56ch}

/* ===== Peak rank : badge centré + label dessous ===== */
.rank-big{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.rank-badge img{
  width:96px; height:96px;
  object-fit:contain;
  filter: drop-shadow(0 0 14px rgba(255,120,80,.45));
}
.rank-label{
  margin-top:10px;
  font-weight:800;
  letter-spacing:-.01em;
}

/* ===== Réseaux avec icônes ===== */
.socials.icons .chip.icon{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.socials.icons .chip.icon img{
  width:18px; height:18px; display:inline-block;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.45));
}

/* Variante violet si tu fais une page Lumeris (optionnel) */
.theme-violet .hero-photo img,
.theme-violet .rank-badge img{
  filter: drop-shadow(0 0 14px rgba(170,140,255,.55));
}
.theme-violet .tag{
  border-color: rgba(170,140,255,.6);
  background: rgba(170,140,255,.14);
  box-shadow: 0 0 10px rgba(170,140,255,.35);
}

/* Responsive simple */
@media (max-width: 900px){
  .player-main .panel-hero{grid-template-columns:1fr}
  .hero-photo img{max-height:220px}
}
/* ====== Conteneur principal des pages joueur ====== */
.player-main {
  width: 100%;
  max-width: 1200px;   /* largeur confortable */
  margin: 0 auto;      /* centré */
  padding: 140px 20px 60px; /* garde la navbar et un peu d’air */
}

/* Panel générique (reprend ton style de cartes) */
.panel {
  position: relative;
  border-radius: 16px;
  background: rgba(15, 15, 20, .65);
  border: 1px solid rgba(255, 90, 40, .55);              /* thème rouge Nyx */
  box-shadow: 0 0 20px rgba(255, 90, 40, .45),
              0 30px 70px rgba(0, 0, 0, .85);
  backdrop-filter: blur(6px);
  color: #fff;
}

/* Si tu veux le thème violet, tu peux surcharger par page avec .theme-violet .panel {...} */

/* ====== HERO : photo gauche / texte droite ====== */
.panel-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 28px;
  margin-bottom: 28px;
}
.hero-photo {
  display: flex; align-items: center; justify-content: center;
}
.hero-photo img {
  width: 100%; max-width: 260px; height: auto; object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255,120,80,.45));
}
.hero-info { display: flex; flex-direction: column; justify-content: center; }
.player-name { font-size: clamp(28px, 3vw, 42px); line-height: 1.1; margin: 0 0 8px; }
.badges { display: flex; gap: 10px; align-items: center; margin: 6px 0 12px; }
.tag {
  display: inline-block; padding: 6px 10px; border-radius: 10px;
  background: rgba(255,120,80,.15); border: 1px solid rgba(255,120,80,.5);
  box-shadow: 0 0 10px rgba(255,120,80,.5); font-weight: 700; font-size: .8rem;
}
.bio { color: rgba(255,255,255,.9); max-width: 56ch; }

/* ====== RANGÉE 2 COLONNES : Peak rank / Réseaux ====== */
.panels-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

/* Peak rank mis en forme */
.panel-rank { padding: 20px; text-align: center; }
.panel-title { font-weight: 700; margin: 0 0 12px; }
.rank-big .rank-badge {
  display: grid; place-items: center;
  width: 140px; height: 140px; margin: 0 auto 10px;
  border-radius: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,120,80,.25), rgba(0,0,0,.0));
  box-shadow: 0 0 18px rgba(255,120,80,.45) inset, 0 0 18px rgba(255,120,80,.35);
}
.rank-big .rank-badge img { width: 90%; height: 90%; object-fit: contain; }
.rank-big .rank-label { font-size: 1.05rem; font-weight: 800; }

/* Réseaux avec icônes */
.panel-socials { padding: 20px; text-align: center;  }
.socials.icons { display: flex; flex-wrap: wrap; gap: 12px; }
.chip.icon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 12px;
  background: rgba(255,120,80,.15);
  border: 1px solid rgba(255,120,80,.45);
  color: #fff; text-decoration: none; font-weight: 700;
  box-shadow: 0 0 10px rgba(255,120,80,.45);
  transition: transform .15s ease, filter .15s ease;
}
.chip.icon img { width: 18px; height: 18px; object-fit: contain; }
.chip.icon:hover { transform: translateY(-2px); filter: brightness(1.15); }

/* ====== TIER LIST ====== */
.panel-tierlist { padding: 20px; text-align: center;  }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);  /* 5 colonnes S A B C D */
  gap: 16px;
}
.tier-col { display: flex; flex-direction: column; gap: 10px; }
.tier-head {
  text-align: center; font-weight: 900; letter-spacing: .06em;
  padding: 8px 0; border-radius: 10px;
  background: rgba(255,120,80,.18);
  border: 1px solid rgba(255,120,80,.55);
  box-shadow: 0 0 12px rgba(255,120,80,.5);
}
.tier-body { display: flex; flex-direction: column; gap: 8px; }
.agent {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 8px 10px;
}
.agent img { width: 22px; height: 22px; object-fit: contain; }
.agent span { font-weight: 600; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px){
  .panel-hero { grid-template-columns: 220px 1fr; }
}
@media (max-width: 820px){
  .panel-hero { grid-template-columns: 1fr; text-align: center; }
  .hero-photo { justify-content: center; }
  .bio { margin: 0 auto; }
  .panels-row.two { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px){
  .tier-grid { grid-template-columns: 1fr; }
}
/* Agrandir icônes agents tier list */
.panel-tierlist .agent img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Optionnel : agrandir aussi le texte */
.panel-tierlist .agent span {
  font-size: 17px;
  font-weight: 600;
  margin-top: 6px;
}
/* 💚 Glow vert pour Helixia (même style que les autres) */
.roster-card.green {
  border: 1px solid rgba(0, 255, 140, 0.6);
  box-shadow:
    0 0 25px rgba(0, 255, 140, 0.45),
    0 30px 80px rgba(0, 0, 0, 0.75);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 140, 0.25) 0%, rgba(0, 40, 20, 0.12) 60%),
    linear-gradient(to top, rgba(0, 30, 20, 0.85) 0%, rgba(10, 70, 40, 0.5) 60%);
}

.green .roster-link {
  background: rgba(0, 255, 140, 0.2);
  color: #b8ffd9;
  border: 1px solid rgba(0, 255, 140, 0.6);
}
.green .roster-link:hover {
  background: rgba(0, 255, 140, 0.38);
  box-shadow: 0 0 16px rgba(0, 255, 140, 0.75);
}
/* ========================== */
/* Centrage du roster Helixia */
/* ========================== */

/* S'assure que la grille reste bien centrée */
.rosters-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

/* Style du glow vert déjà défini */
.roster-card.green {
  border: 1px solid rgba(0, 255, 140, 0.6);
  box-shadow:
    0 0 25px rgba(0, 255, 140, 0.45),
    0 30px 80px rgba(0, 0, 0, 0.75);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 140, 0.25) 0%, rgba(0, 40, 20, 0.12) 60%),
    linear-gradient(to top, rgba(0, 30, 20, 0.85) 0%, rgba(10, 70, 40, 0.5) 60%);
}

/* Centrer Helixia sur sa propre ligne */
.center-card {
  flex-basis: 100%; /* force le retour à la ligne */
  display: flex;
  justify-content: center;
}

/* Ajustement esthétique */
.roster-card.green {
  max-width: 350px;
}
/* ===== Drapeau Suisse ===== */
.nyx-flag-ch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 12px;
  margin-left: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: #d52b1e;
  position: relative;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(255,255,255,0.25);
}

/* La croix blanche */
.nyx-flag-ch::before,
.nyx-flag-ch::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

/* Barre verticale */
.nyx-flag-ch::before {
  width: 2px;
  height: 8px;
}

/* Barre horizontale */
.nyx-flag-ch::after {
  width: 8px;
  height: 2px;
}
/* ===== GLOW ROSE POUR STRUCTUREINFO ===== */
.nyx-card.pink .nyx-silhouette,
.nyx-card.pink .nyx-photo img {
    filter: drop-shadow(0 0 14px rgba(255,105,180,0.55)) !important;
}

/* Renforce aussi le contour du numéro */
.nyx-card.pink .nyx-card-number {
    text-shadow:
      0 0 14px rgba(255,255,255,0.8),
      0 0 32px rgba(255,105,180,0.7),
      0 15px 30px rgba(0,0,0,0.9) !important;
}

/* Glow général du cadre */
.nyx-card.pink {
    border: 2px solid rgba(255,105,180,0.55) !important;
    box-shadow:
      0 0 20px rgba(255,105,180,0.45),
      0 25px 50px rgba(0,0,0,0.9) !important;
}

.nyx-card.pink:hover {
    border-color: rgba(255,140,200,0.9) !important;
    box-shadow:
      0 0 28px rgba(255,140,200,0.75),
      0 35px 75px rgba(0,0,0,0.95) !important;
}
/* ==== GLOW ROSE AUTOUR DES SILHOUETTES (STRUCTUREINFO) ==== */

/* Glow rose sur les silhouettes */
.nyx-card.pink .nyx-photo img,
.nyx-card.pink .nyx-silhouette {
    filter:
        drop-shadow(0 0 10px rgba(255, 85, 160, 0.65))
        drop-shadow(0 0 20px rgba(255, 85, 160, 0.45))
        drop-shadow(0 0 35px rgba(255, 85, 160, 0.35)) !important;
}

/* Supprime tout glow rouge parasite */
.nyx-card .nyx-photo img,
.nyx-card .nyx-silhouette {
    mix-blend-mode: normal !important;
}

/* Renforce la cohérence du cadre rose */
.nyx-card.pink {
    border: 2px solid rgba(255, 105, 180, 0.55) !important;
    box-shadow:
        0 0 18px rgba(255, 105, 180, 0.45),
        0 15px 40px rgba(0, 0, 0, 0.75) !important;
}
/* ===== NAVBAR — hitbox + police en GRAS + hover noir ===== */

header nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  margin: 0 10px;

  border-radius: 10px;
  text-decoration: none;

  /* 👉 Police identique au logo : Inter bold */
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700; /* GRAS */
  letter-spacing: 0.5px;

  /* Texte noir (comme ton logo), pas gris */
  color: #000000;

  background: transparent;
  transition: 0.25s ease;
}

/* Hover : carré noir + texte blanc */
header nav a:hover {
  background: #000000; /* noir profond */
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}
/* ============================
   PAGE JOUEUR – LAYOUT GLOBAL
   ============================ */

.player-page{
  position:relative;
  z-index:10;
  padding-top:140px;
  padding-bottom:4rem;
  min-height:100vh;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Inter",Roboto,"Segoe UI",sans-serif;
}

/* petite anim d'apparition */
@keyframes player-pop{
  from{
    opacity:0;
    transform:translateY(18px) scale(.97);
    box-shadow:0 0 0 rgba(255,90,40,0);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* ============================
   HERO JOUEUR
   ============================ */

.player-hero-card{
  width:min(1100px,100% - 48px);
  margin-bottom:2.5rem;
  background:rgba(10,5,10,.94);
  border-radius:24px;
  padding:32px 40px 40px;
  border:2px solid rgba(255,90,40,.7);
  box-shadow:0 0 30px rgba(255,90,40,.55),0 40px 90px rgba(0,0,0,.95);
  animation:player-pop .65s ease-out both;
}

.player-hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:18px;
}

.player-photo-large img{
  width:220px;
  height:220px;
  border-radius:999px;
  object-fit:cover;
  filter:
    drop-shadow(0 0 18px rgba(255,120,80,.65))
    drop-shadow(0 0 40px rgba(0,0,0,.9));
}

/* Nom + badges + bio */

.player-name{
  font-size:2.4rem;
  font-weight:800;
  letter-spacing:-.04em;
  margin-bottom:.4rem;
}

.player-badges{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  justify-content:center;
  margin-bottom:.7rem;
}

.player-chip{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:4px 10px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:600;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(0,0,0,.6);
}

.player-chip.role{
  background:linear-gradient(135deg,#ff7a40,#ff4b80);
  border-color:rgba(0,0,0,.8);
  box-shadow:0 0 14px rgba(255,120,80,.7);
}

.player-chip.country{
  background:rgba(20,20,30,.85);
}

/* le petit drapeau FR dans la chip */
.player-chip.country .flag-fr{
  width:18px;
  height:12px;
  border-radius:2px;
  overflow:hidden;
  display:flex;
}
.player-chip.country .flag-fr span:nth-child(1){flex:1;background:#002395;}
.player-chip.country .flag-fr span:nth-child(2){flex:1;background:#ffffff;}
.player-chip.country .flag-fr span:nth-child(3){flex:1;background:#ED2939;}

.player-bio{
  max-width:720px;
  font-size:.95rem;
  color:rgba(255,255,255,.86);
  line-height:1.6;
}

/* ============================
   PEAK RANK + RÉSEAUX
   ============================ */

.player-bottom-grid{
  width:min(1100px,100% - 48px);
  display:flex;
  flex-wrap:wrap;
  gap:1.6rem;
  margin-bottom:2.5rem;
  justify-content:center;
}

.player-panel{
  flex:1 1 320px;
  min-width:320px;
  background:rgba(5,0,0,.9);
  border-radius:20px;
  padding:18px 22px 22px;
  border:2px solid rgba(255,90,40,.7);
  box-shadow:0 0 26px rgba(255,90,40,.55),0 30px 80px rgba(0,0,0,.9);
  animation:player-pop .7s ease-out both;
}

.player-panel-title{
  font-size:1rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.9);
  margin-bottom:1rem;
}

/* Rank panel */

.player-rank-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.7rem;
}

.player-rank-medal img{
  width:140px;
  height:140px;
  object-fit:contain;
  filter:
    drop-shadow(0 0 16px rgba(255,120,80,.7))
    drop-shadow(0 0 30px rgba(0,0,0,.9));
}

.player-rank-name{
  font-weight:700;
  font-size:1rem;
}

/* Social panel */

.player-social-list{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
}

.social-pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(40,20,15,.95);
  border:1px solid rgba(255,120,80,.8);
  font-size:.8rem;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  box-shadow:0 0 12px rgba(255,120,80,.6);
  transition:.2s;
}
.social-pill:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 0 18px rgba(255,140,100,.9);
}

.social-pill-icon{
  width:16px;
  height:16px;
  object-fit:contain;
}

/* ============================
   TIER LIST
   ============================ */

.player-tier-card{
  width:min(1100px,100% - 48px);
  background:rgba(5,0,0,.92);
  border-radius:20px;
  padding:18px 22px 22px;
  border:2px solid rgba(255,90,40,.7);
  box-shadow:0 0 26px rgba(255,90,40,.55),0 30px 80px rgba(0,0,0,.9);
  margin-bottom:2.5rem;
  animation:player-pop .8s ease-out both;
}

.player-tier-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1rem;
  margin-top:1rem;
}

.tier-column{
  background:rgba(10,0,0,.95);
  border-radius:14px;
  padding:8px 8px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.6rem;
}

.tier-header{
  width:100%;
  text-align:center;
  padding:4px 0;
  border-radius:10px;
  font-weight:700;
  font-size:.9rem;
}

/* couleurs lettres */
.tier-s{background:#ff4b4b;}
.tier-a{background:#ff914b;}
.tier-b{background:#ffd54b;}
.tier-c{background:#4bc0ff;}
.tier-d{background:#888;}

.tier-slot{
  width:100%;
  min-height:80px;
  border-radius:10px;
  background:rgba(0,0,0,.9);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.35rem;
  padding:6px;
}

.tier-slot img{
  width:54px;
  height:54px;
  object-fit:contain;
  filter:drop-shadow(0 0 10px rgba(255,120,80,.5));
}

.tier-slot span{
  font-size:.78rem;
}

.tier-empty span{
  opacity:.4;
}

/* Responsive */
@media (max-width:900px){
  .player-hero-card{
    padding:24px 18px 28px;
  }
  .player-name{
    font-size:2rem;
  }
  .player-bottom-grid{
    flex-direction:column;
  }
  .player-tier-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:600px){
  .player-tier-grid{
    grid-template-columns:1fr;
  }
}
/* =======================
   PAGE JOUEUR (Ashened)
   ======================= */

.player-page{
  position:relative;
  z-index:10;
  padding-top:140px;
  padding-bottom:4rem;
  min-height:100vh;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2.5rem;
}

/* Carte header centrée */
.player-header-card{
  width:min(1100px, 100% - 32px);
  border-radius:24px;
  padding:2.4rem 2.8rem 2.6rem;
  background:radial-gradient(circle at 20% 20%, rgba(255,90,40,.25) 0%, rgba(20,0,0,.12) 60%),
             linear-gradient(to top, rgba(20,0,0,.94) 0%, rgba(55,0,0,.72) 60%);
  border:3px solid rgba(255,120,80,.7);
  box-shadow:0 0 26px rgba(255,90,40,.6), 0 30px 70px rgba(0,0,0,.9);
  animation:player-card-in .6s ease-out both;
}

.player-header-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

/* Photo bien centrée, plus grande */
.player-header-photo-wrap{
  width:230px;
  height:230px;
  border-radius:999px;
  padding:10px;
  background:radial-gradient(circle at 30% 10%,rgba(255,255,255,.12) 0%,rgba(255,120,80,.06) 45%,rgba(0,0,0,.0) 70%);
  box-shadow:0 0 30px rgba(255,120,80,.65);
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:1.4rem;
  animation:float-photo 4.5s ease-in-out infinite;
}

.player-header-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
}

.player-header-name{
  font-size:2.7rem;
  font-weight:800;
  letter-spacing:-.04em;
  margin-bottom:.4rem;
}

.player-header-tags{
  display:flex;
  gap:.5rem;
  margin-bottom:.9rem;
}

.player-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 11px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:600;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 0 12px rgba(255,120,80,.7);
}

.player-header-bio{
  max-width:720px;
  font-size:.92rem;
  color:rgba(255,255,255,.85);
  line-height:1.5;
}

/* Ligne avec Peak rank + Réseaux */
.player-row{
  width:min(1100px, 100% - 32px);
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.8rem;
}

.player-card,
.player-tier-card{
  border-radius:22px;
  padding:1.8rem 2rem 2rem;
  background:radial-gradient(circle at 20% 20%, rgba(255,90,40,.23) 0%, rgba(20,0,0,.16) 60%),
             linear-gradient(to top, rgba(18,0,0,.96) 0%, rgba(45,0,0,.8) 60%);
  border:3px solid rgba(255,120,80,.75);
  box-shadow:0 0 24px rgba(255,90,40,.7), 0 24px 60px rgba(0,0,0,.9);
  animation:player-card-in .6s ease-out both;
}

.player-card-title{
  font-size:1rem;
  font-weight:700;
  margin-bottom:1.2rem;
}

/* Peak rank */
.player-rank-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.9rem;
}

.player-rank-img{
  width:140px;
  height:140px;
  object-fit:contain;
  filter:drop-shadow(0 0 18px rgba(255,120,80,.85));
}

.player-rank-text{
  font-size:1rem;
  font-weight:700;
}

/* Réseaux */
.player-socials{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}

.player-social-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(20,0,0,.9);
  border:2px solid rgba(255,120,80,.7);
  box-shadow:0 0 14px rgba(255,120,80,.7);
  font-size:.8rem;
  text-decoration:none;
  color:#fff;
  transition:.2s;
}

.player-social-btn img{
  width:18px;
  height:18px;
  object-fit:contain;
}

.player-social-btn:hover{
  transform:translateY(-1px) scale(1.03);
  background:rgba(255,120,80,.15);
}

/* Tier list */
.player-tier-card{
  width:min(1100px, 100% - 32px);
  margin-top:1rem;
}

.player-tier-grid{
  margin-top:1.1rem;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1rem;
}

.player-tier-col{
  display:flex;
  flex-direction:column;
  gap:.6rem;
}

.player-tier-label{
  text-align:center;
  padding:.3rem 0;
  border-radius:999px;
  border:2px solid rgba(255,120,80,.8);
  background:rgba(0,0,0,.75);
  font-weight:700;
}

.player-tier-agents{
  min-height:70px;
  border-radius:14px;
  background:rgba(0,0,0,.65);
  padding:.5rem;
  display:flex;
  flex-direction:column;
  gap:.4rem;
}

.agent-pill{
  display:flex;
  align-items:center;
  gap:.4rem;
  padding:6px 8px;
  border-radius:10px;
  background:rgba(255,255,255,.03);
}

.agent-pill img{
  width:28px;
  height:28px;
  object-fit:contain;
}

/* Animations */
@keyframes player-card-in{
  from{opacity:0;transform:translateY(12px) scale(.98)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

@keyframes float-photo{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* Responsive */
@media (max-width:900px){
  .player-row{grid-template-columns:1fr}
  .player-header-card{padding:2rem 1.6rem}
  .player-card,
  .player-tier-card{padding:1.6rem 1.4rem}
  .player-tier-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
/* ===========================
   PAGE JOUEUR ASHENED
   =========================== */

.ash-page{
  position:relative;
  z-index:10;
  padding-top:140px;
  padding-bottom:60px;
  min-height:100vh;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2.5rem;
}

/* HERO haut de page : image gauche / texte droite */
.ash-hero{
  width:min(1100px,100% - 40px);
  display:grid;
  grid-template-columns:320px 1fr;
  gap:28px;
  padding:26px 30px;
  border-radius:24px;
  background:radial-gradient(circle at 20% 20%, rgba(255,90,40,.25) 0%, rgba(20,0,0,.12) 60%),
             linear-gradient(to top, rgba(20,0,0,.95) 0%, rgba(55,0,0,.78) 60%);
  border:3px solid rgba(255,120,80,.7);
  box-shadow:0 0 26px rgba(255,90,40,.6),0 30px 80px rgba(0,0,0,.95);
}

.ash-hero-left{
  display:flex;
  align-items:center;
  justify-content:center;
}

.ash-hero-photo-wrap{
  width:230px;
  height:230px;
  border-radius:999px;
  padding:10px;
  background:radial-gradient(circle at 30% 10%,rgba(255,255,255,.14) 0%,rgba(255,120,80,.08) 45%,rgba(0,0,0,.0) 70%);
  box-shadow:0 0 30px rgba(255,120,80,.7);
  display:flex;
  align-items:center;
  justify-content:center;
}

.ash-hero-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
}

.ash-hero-right{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.ash-name{
  font-size:2.6rem;
  font-weight:800;
  letter-spacing:-.04em;
  margin:0 0 .4rem;
}

.ash-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-bottom:.7rem;
}

.ash-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 11px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:600;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.25);
}

.ash-tag.ash-role{
  background:linear-gradient(135deg,#ff7a40,#ff4b80);
  border-color:rgba(0,0,0,.8);
  box-shadow:0 0 14px rgba(255,120,80,.8);
}

.ash-bio{
  max-width:520px;
  font-size:.95rem;
  color:rgba(255,255,255,.86);
  line-height:1.6;
}

/* Rangée Peak rank + Réseaux */
.ash-row{
  width:min(1100px,100% - 40px);
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:center;
}

.ash-panel{
  flex:1 1 320px;
  min-width:300px;
  border-radius:20px;
  padding:18px 22px 22px;
  background:radial-gradient(circle at 20% 20%, rgba(255,90,40,.23) 0%, rgba(20,0,0,.16) 60%),
             linear-gradient(to top, rgba(18,0,0,.96) 0%, rgba(45,0,0,.82) 60%);
  border:2px solid rgba(255,120,80,.75);
  box-shadow:0 0 24px rgba(255,90,40,.7),0 26px 70px rgba(0,0,0,.9);
}

.ash-panel-title{
  font-size:1rem;
  font-weight:700;
  margin-bottom:1rem;
}

/* Peak rank */
.ash-rank-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.8rem;
}

.ash-rank-medal img{
  width:140px;
  height:140px;
  object-fit:contain;
  filter:drop-shadow(0 0 18px rgba(255,120,80,.9));
}

.ash-rank-text{
  font-size:1rem;
  font-weight:700;
}

/* Réseaux */
.ash-socials{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}

.ash-social-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(20,0,0,.9);
  border:2px solid rgba(255,120,80,.7);
  box-shadow:0 0 14px rgba(255,120,80,.7);
  font-size:.8rem;
  text-decoration:none;
  color:#fff;
  transition:.2s;
}

.ash-social-pill img{
  width:18px;
  height:18px;
  object-fit:contain;
}

.ash-social-pill:hover{
  transform:translateY(-1px) scale(1.03);
  background:rgba(255,120,80,.15);
}

/* TIER LIST */
.ash-tier{
  width:min(1100px,100% - 40px);
  border-radius:22px;
  padding:18px 22px 22px;
  background:radial-gradient(circle at 20% 20%, rgba(255,90,40,.23) 0%, rgba(20,0,0,.16) 60%),
             linear-gradient(to top, rgba(18,0,0,.96) 0%, rgba(45,0,0,.82) 60%);
  border:2px solid rgba(255,120,80,.75);
  box-shadow:0 0 24px rgba(255,90,40,.7),0 26px 70px rgba(0,0,0,.9);
}

.ash-tier-grid{
  margin-top:1rem;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1rem;
}

.ash-tier-col{
  display:flex;
  flex-direction:column;
  gap:.6rem;
}

.ash-tier-label{
  text-align:center;
  padding:.3rem 0;
  border-radius:999px;
  border:2px solid rgba(255,120,80,.85);
  background:rgba(0,0,0,.8);
  font-weight:700;
}

/* Couleurs S A B C D */
.ash-tier-s{background:#ff4b4b;}
.ash-tier-a{background:#ff914b;}
.ash-tier-b{background:#ffd54b;}
.ash-tier-c{background:#4bc0ff;}
.ash-tier-d{background:#888;}

.ash-tier-body{
  min-height:80px;
  border-radius:14px;
  background:rgba(0,0,0,.75);
  padding:.5rem;
  display:flex;
  flex-direction:column;
  gap:.5rem;
}

.ash-agent{
  display:flex;
  align-items:center;
  gap:.45rem;
  padding:6px 8px;
  border-radius:10px;
  background:rgba(255,255,255,.04);
}

.ash-agent img{
  width:60px;
  height:60px;
  object-fit:contain;
  filter:drop-shadow(0 0 10px rgba(255,120,80,.6));
}

.ash-agent span{
  font-size:.9rem;
  font-weight:600;
}

/* Responsive */
@media (max-width:900px){
  .ash-hero{
    grid-template-columns:1fr;
    text-align:center;
  }
  .ash-hero-right{
    align-items:center;
  }
  .ash-bio{
    max-width:100%;
  }
  .ash-tier-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:600px){
  .ash-tier-grid{
    grid-template-columns:1fr;
  }
}
.ash-hero-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:inherit;
}
/* ===========================
   ANIMATIONS GLOBALES
   =========================== */
@keyframes fae-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fae-float-soft {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ===========================
   PANNEAU / CARTE DE BASE
   (tu peux l'ajouter sur n’importe quelle carte existante)
   =========================== */

.fae-panel {
  position: relative;
  border-radius: 20px;
  padding: 18px 22px;
  background: rgba(10, 5, 10, .9);
  border: 2px solid rgba(255, 90, 40, .65); /* couleur par défaut : rouge Nyx */
  box-shadow: 0 0 26px rgba(255, 90, 40, .55), 0 30px 80px rgba(0,0,0,.9);
  backdrop-filter: blur(8px);
  color: #fff;
}

/* Animation d'apparition douce */
.fae-card-pop {
  animation: fae-pop .6s ease-out both;
}

/* Effet de flottement (à mettre sur une seule grosse carte ou une image) */
.fae-float {
  animation: fae-float-soft 4.5s ease-in-out infinite;
}

/* Titre générique de panel */
.fae-panel-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.9);
}

/* ===========================
   VARIANTES DE THÈME
   (appliquées via une classe sur body ou sur un conteneur parent)
   =========================== */

/* Thème rouge (Nyx / joueurs Nyx) */
.fae-theme-red .fae-panel {
  border-color: rgba(255, 90, 40, .75);
  box-shadow: 0 0 26px rgba(255, 90, 40, .6), 0 30px 80px rgba(0,0,0,.9);
}

/* Thème violet (Lumeris) */
.fae-theme-violet .fae-panel {
  border-color: rgba(180,130,255,.75);
  box-shadow: 0 0 26px rgba(180,130,255,.6), 0 30px 80px rgba(0,0,0,.9);
}

/* Thème rose (Structure / staff) */
.fae-theme-pink .fae-panel {
  border-color: rgba(255,105,180,.75);
  box-shadow: 0 0 26px rgba(255,105,180,.6), 0 30px 80px rgba(0,0,0,.9);
}

/* Thème vert (Helixia) */
.fae-theme-green .fae-panel {
  border-color: rgba(0,255,140,.8);
  box-shadow: 0 0 26px rgba(0,255,140,.55), 0 30px 80px rgba(0,0,0,.9);
}

/* ===========================
   TAGS / BADGES GÉNÉRIQUES
   =========================== */

.fae-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.7);
  box-shadow: 0 0 10px rgba(0,0,0,.7);
}

.fae-tag-role-red {
  background: linear-gradient(135deg,#ff7a40,#ff4b80);
  border-color: rgba(0,0,0,.8);
  box-shadow: 0 0 14px rgba(255,120,80,.8);
}

.fae-tag-role-violet {
  background: linear-gradient(135deg,#8f7bff,#c07bff);
  border-color: rgba(0,0,0,.8);
  box-shadow: 0 0 14px rgba(180,130,255,.8);
}

.fae-tag-role-pink {
  background: linear-gradient(135deg,#ff5ba5,#ff8bd5);
  border-color: rgba(0,0,0,.8);
  box-shadow: 0 0 14px rgba(255,105,180,.8);
}

.fae-tag-role-green {
  background: linear-gradient(135deg,#00e78c,#47ffbf);
  border-color: rgba(0,0,0,.8);
  box-shadow: 0 0 14px rgba(0,255,140,.8);
}
/* ===========================
   PAGES POSTE VACANT (joueur)
   =========================== */

/* Layout global */
.vacant-page{
  position:relative;
  z-index:10;
  padding-top:140px;
  padding-bottom:60px;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Inter",Roboto,"Segoe UI",sans-serif;
}

/* Carte centrale */
.vacant-card{
  width:min(640px, 100% - 40px);
  border-radius:24px;
  padding:28px 28px 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06) 0%, rgba(10,0,0,.18) 55%),
    linear-gradient(to top, rgba(10,0,0,.96) 0%, rgba(35,0,0,.82) 60%);
  border:2px solid rgba(255,90,40,.70); /* valeur par défaut = Nyx (rouge) */
  box-shadow:0 0 26px rgba(255,90,40,.6), 0 30px 80px rgba(0,0,0,.95);
  text-align:center;
  animation:fae-pop .6s ease-out both; /* anim que tu as déjà dans ton CSS */
}

/* Icône / pictogramme */
.vacant-icon{
  width:80px;
  height:80px;
  border-radius:999px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  font-weight:700;
  background:rgba(0,0,0,.85);
  border:2px solid rgba(255,255,255,.18);
  box-shadow:
    0 0 18px rgba(0,0,0,.9),
    0 0 22px rgba(255,255,255,.15);
}

/* Titre + texte */
.vacant-title{
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:-.03em;
  margin-bottom:.6rem;
}

.vacant-role{
  font-size:.9rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.14em;
  opacity:.85;
  margin-bottom:1rem;
}

.vacant-text{
  max-width:480px;
  margin:0 auto 1.6rem;
  font-size:.95rem;
  line-height:1.7;
  color:rgba(255,255,255,.86);
}

/* Petit tag "poste vacant" */
.vacant-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  padding:5px 11px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.70);
  color:#fff;
  margin-bottom:1rem;
}

/* Bouton de contact / candidature */
.vacant-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-size:.9rem;
  font-weight:700;
  text-decoration:none;
  margin-top:.4rem;
  background:linear-gradient(135deg,#ff7a40,#ff4b80);
  color:#fff;
  box-shadow:0 0 16px rgba(255,120,80,.7);
  transition:.2s;
}
.vacant-btn:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 0 22px rgba(255,140,100,.9);
}

/* Variantes de thème par équipe */
.vacant-nyx .vacant-card{
  border-color:rgba(255,90,40,.7);
  box-shadow:0 0 26px rgba(255,90,40,.6), 0 30px 80px rgba(0,0,0,.95);
}
.vacant-lumeris .vacant-card{
  border-color:rgba(180,130,255,.8);
  box-shadow:0 0 26px rgba(180,130,255,.65), 0 30px 80px rgba(0,0,0,.95);
  background:
    radial-gradient(circle at 20% 20%, rgba(170,140,255,.20) 0%, rgba(10,0,25,.18) 55%),
    linear-gradient(to top, rgba(12,0,40,.96) 0%, rgba(40,15,100,.82) 60%);
}
.vacant-helixia .vacant-card{
  border-color:rgba(0,255,145,.8);
  box-shadow:0 0 26px rgba(0,255,145,.6), 0 30px 80px rgba(0,0,0,.95);
  background:
    radial-gradient(circle at 20% 20%, rgba(0,255,145,.18) 0%, rgba(0,30,15,.20) 55%),
    linear-gradient(to top, rgba(0,20,10,.96) 0%, rgba(5,50,25,.82) 60%);
}

/* Responsive */
@media (max-width:600px){
  .vacant-card{
    padding:22px 18px 24px;
  }
  .vacant-title{
    font-size:1.4rem;
  }
}
.btn-return-red {
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 22px;
  border-radius:999px;

  background:rgba(40,0,0,.85);
  border:2px solid rgba(255,120,80,.75);
  color:#fff;
  font-weight:700;
  text-decoration:none;

  box-shadow:
    0 0 12px rgba(255,120,80,.55),
    0 0 26px rgba(255,60,20,.35);

  transition:.2s ease;
}

.btn-return-red:hover {
  transform:translateY(-2px) scale(1.03);
  background:rgba(255,120,80,.18);
  box-shadow:
    0 0 18px rgba(255,120,80,.9),
    0 0 32px rgba(255,80,40,.7);
}
.btn-return-violet {
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 22px;
  border-radius:999px;

  background:rgba(25,0,45,.85);
  border:2px solid rgba(180,130,255,.75);
  color:#fff;
  font-weight:700;
  text-decoration:none;

  box-shadow:
    0 0 12px rgba(180,130,255,.55),
    0 0 26px rgba(140,90,255,.35);

  transition:.2s ease;
}

.btn-return-violet:hover {
  transform:translateY(-2px) scale(1.03);
  background:rgba(180,130,255,.18);
  box-shadow:
    0 0 18px rgba(190,165,255,.9),
    0 0 32px rgba(160,120,255,.75);
}
.btn-return-green {
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 22px;
  border-radius:999px;

  background:rgba(0,40,20,.85);
  border:2px solid rgba(0,255,140,.8);
  color:#fff;
  font-weight:700;
  text-decoration:none;

  box-shadow:
    0 0 12px rgba(0,255,140,.55),
    0 0 26px rgba(0,200,120,.35);

  transition:.2s ease;
}

.btn-return-green:hover {
  transform:translateY(-2px) scale(1.03);
  background:rgba(0,255,140,.18);
  box-shadow:
    0 0 18px rgba(0,255,160,.9),
    0 0 34px rgba(0,200,120,.75);
}
/* ===== Combiner les animations (pop + breathe) ===== */

/* Nyx (rouge) */
.nyx-card.fae-card-pop {
  /* pop d'apparition + glow respirant */
  animation:
    fae-pop .6s ease-out both,
    nyx-soft-breathe 4s ease-in-out infinite;
}

/* Lumeris (violet) */
.lum-card.fae-card-pop {
  /* pop d'apparition + breathe violet */
  animation:
    fae-pop .6s ease-out both,
    lum-breathe 4s ease-in-out infinite;
}

/* Helixia (vert) – cartes vertes */
.helixia-page .nyx-card.green.fae-card-pop {
  animation:
    fae-pop .6s ease-out both,
    nyx-soft-breathe 4s ease-in-out infinite;
}
/* ===========================
   Animations globales FAE
   =========================== */

@keyframes fae-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Toutes les cartes des pages effectif (Nyx / Lumeris / Helixia) */
.fae-animate-page .nyx-card,
.fae-animate-page .lum-card {
  animation: fae-pop .6s ease-out both;
}

/* Titres type "Staff", "Joueurs titulaires", "Remplaçants" */
.fae-title-pop {
  animation: fae-pop .7s ease-out both;
  display: inline-block;
}
/* ===== MENU DÉROULANT "À propos" ===== */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Bouton principal "À propos" (même style que les autres liens nav) */
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  margin: 0 10px;
  border-radius: 10px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  color: #000000;
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

/* Petite flèche ▼ */
.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.8em;
  margin-left: 6px;
}

/* Hover comme les autres liens */
.nav-dropdown-toggle:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

/* Conteneur du menu déroulant */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);

  background: #000000;
  border-radius: 10px;
  padding: 8px 0;
  min-width: 170px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}

/* Liens internes du menu */
.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Affichage au survol */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 4px);
}
/* ====== NAVBAR : dropdown amélioré ====== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 12px 26px;
  margin: 0 10px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  color: #000;
}

.nav-dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 160px;
  background: #000;
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .25s ease, transform .25s ease;
}

/* Liens menu */
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s;
}

.nav-dropdown-menu a:hover {
  background: #333;
}

/* Ouverture : menu reste ouvert même si on descend doucement */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Zone de sécurité pour éviter que le menu se ferme trop vite */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}
