/* ================================
   🧱 Correction d’alignement Strip
   ================================ */

/* Conteneur principal centré */
.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Empêche le strip ou la zone serveur de s'étendre en dehors */
.grid-12.mt.animate {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Les deux blocs suivent la largeur de leur colonne */
.strip,
.server {
  width: 100%;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
  
}
.large-server {
  min-height: 160px; /* plus haut */
  padding: 18px 22px;
  line-height: 1.6;
}
/* Apparence améliorée du strip */
.strip {
  min-height: 80px;
  border-radius: 18px;
  border: 1px solid var(--stroke-soft);
  background: #0a1426b3;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 25px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  overflow-x: auto;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

/* Ajout d’un léger glow au survol */
.strip:hover {
  border-color: #89dcff66;
  box-shadow: 0 0 20px rgba(137,220,255,0.25), inset 0 0 30px rgba(137,220,255,0.15);
}

/* Zone serveur à droite, alignée et lumineuse */
.server {
  min-height: 80px;
  border-radius: 18px;
  border: 1px solid var(--stroke-soft);
  background: #0a1426b3;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.server:hover {
  border-color: #89dcff66;
  box-shadow: 0 0 20px rgba(137,220,255,0.25), inset 0 0 30px rgba(137,220,255,0.15);
}

/* Faithful recreation with glass + glow */
:root{
  --bg0:#030813; --bg1:#050b16; --bg2:#0a1c32;
  --glass:#ffffff1a; --stroke:#89dcff55; --stroke-soft:#89dcff33;
  --glow:#89dcff30; --glow-strong:#89dcff99;
  --text:#e9f3ff; --muted:#a8b3c7;
  --r-lg: 12px; --r-xl: 16px; --r-2xl: 20px; --r-3xl: 28px;
  --shadow: 0 0 40px rgba(137,220,255,.2);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;

  background-color: #030813;
  background-image:
    url("https://mystic-virtualplay.fr/dev/images/background8.png"),
    radial-gradient(80% 120% at 50% -10%, rgba(10,28,50,0.8) 0%, rgba(5,11,22,0.7) 40%, rgba(3,8,19,0.9) 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
}





/* 📱 Sur mobile : éviter le fixed buggy et couvrir un peu plus */
@media (max-width: 900px) {
  body {
    background-attachment: scroll; /* évite les saccades mobiles */
    background-size: cover; /* couvre tout l’écran sur petits supports */
  }


}
.small{font-size:12px}
.mb{margin-bottom:10px}
.pb{padding-bottom:56px}
.mt{margin-top:24px}
.shell{max-width:1120px; margin:0 auto; padding: 0 24px}
.center{text-align:center; margin:56px auto 28px}
.chip{
  display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px;
  border:1px solid var(--stroke-soft); background:#0c122080;
  font-size:12px; letter-spacing:.15em; text-transform:uppercase; color:#cfe9ff;
}
.title{font-size:clamp(28px,3.6vw,40px); margin:10px 0 6px}
.lead{max-width:680px; margin:0 auto; color:#c5d7ef; opacity:.85}
.muted{color:var(--muted)}
.particles{position:fixed; inset:0; z-index:-1; opacity:.6; pointer-events:none}

.nav-glass{position:fixed; inset:16px 0 auto; z-index:20; display:flex; justify-content:center}
.nav-inner{
  width:min(92%,1120px); background:#0b1f3380; backdrop-filter: blur(14px);
  border:1px solid var(--stroke-soft); box-shadow:0 10px 30px rgba(0,0,0,.35);
  border-radius:20px; padding:5px 16px; display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#1b2a5a,#1b2a5a);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  font-weight: 700;
}

.brand-name {
  font-weight: 600;
  letter-spacing: .02em;
}

/* 🔥 LE FIX ICI */
.menu {
  display: flex;
  flex: 1;                /* <==== PREND TOUT L’ESPACE DISPONIBLE */
  justify-content: center;/* <==== CENTRE VRAIMENT */
  gap: 10px;
  height: 40px;
  flex-wrap: wrap;        /* mobile */
}

/* Desktop */
@media (min-width: 1200px) {
  .menu {
    flex-wrap: nowrap;
    white-space: nowrap;

    /* ❌ width: 600px; → SUPPRIMÉ */
    /* Pas de largeur fixe */
  }

  .menu a {
    white-space: nowrap;
  }
}
.menu a.btn-glass {
  position: relative;
  overflow: hidden;
}

.menu a.btn-glass::before {
  background: linear-gradient(
    95deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.10) 40%,
    rgba(255,255,255,0.05) 70%,
    transparent 100%
  );
}

.menu a.btn-glass::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(137,220,255,0.45) 0%, rgba(137,220,255,0) 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  transform: scale(0.8);
}

.menu a.btn-glass:hover::after {
  opacity: 0.6;
  transform: scale(1.4);
}


.btn-glass{
  position:relative; display:inline-block; text-decoration:none; color:var(--text);
  padding:8px 14px; font-size:14px; border:1px solid #ffffff3d; border-radius:12px;
  background:#ffffff1a; backdrop-filter: blur(10px); transition:transform .3s var(--ease);
}
.btn-glass::before{
  content:""; position:absolute; inset:0; border-radius:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,.45) 0%, rgba(255,255,255,.12) 35%, rgba(255,255,255,.06) 65%, transparent 100%);
  opacity:.5; transition:opacity .3s var(--ease);
}
.btn-glass::after{content:""; position:absolute; inset:-6px; border-radius:18px; filter:blur(14px); background:var(--glow); opacity:0; transition:opacity .3s var(--ease)}
.btn-glass:hover{transform:translateY(-2px) scale(1.04)}
.btn-glass:hover::before{opacity:.8}
.btn-glass:hover::after{opacity:1}

.page{padding-top:88px; padding-bottom:80px}














/* HERO */
.hero{
  display:flex; gap:8px; align-items:stretch; border:1px solid var(--stroke-soft);
  border-radius:20px; width: 100%; background:#ffffff0d; backdrop-filter: blur(14px); box-shadow:var(--shadow); overflow:hidden;
}
.hero-main{
  position:relative; flex: 1 1 100%; width: 100%; height:360px; width:100%; border:1px solid #89dcff40;
  border-radius:20px 0 0 20px; background:#0b1630; overflow:hidden;
}
.hero-reflect,.hero-glow{position:absolute; inset:0; pointer-events:none}
.hero-reflect{border-radius:20px; background:linear-gradient(120deg,rgba(255,255,255,.28) 0%, rgba(255,255,255,.06) 28%, transparent 60%); opacity:.2}
.hero-glow{filter:blur(28px); background:var(--glow); opacity:.3; inset:-24px; border-radius:28px}
.hero-main iframe {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}
.hero-main img {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}
.hero-tabs{display:flex; flex-shrink: 0; gap:6px; align-items:stretch; border-left:1px solid var(--stroke-soft); padding:6px; background:#ffffff0d; border-radius:0 20px 20px 0}
.col{
  position:relative; height:360px; width:50px; overflow:hidden; cursor:pointer;
  border-left:1px solid #89dcff33; border-radius:10px; background:#ffffff1a;
  transition: width .5s var(--ease), box-shadow .5s var(--ease);
  background-size:cover; background-position:center;
}
.col.open{ width:200px; box-shadow:0 0 24px rgba(137,220,255,.35), 0 0 0 2px #89dcff40 inset }
.col::before{
  content:""; position:absolute; inset:0; border-radius:10px;
  background:linear-gradient(125deg,rgba(255,255,255,.35) 0%, rgba(255,255,255,.08) 28%, transparent 60%);
  opacity:.2; transition:opacity .35s var(--ease);
}
.col:hover::before{opacity:.4}
.col .glow{content:""; position:absolute; inset:-10px; border-radius:16px; background:var(--glow); filter:blur(16px); opacity:0; transition:opacity .35s var(--ease)}
.col:hover .glow{opacity:1}

/* Thumbnails strip */
.thumb-strip{
  margin-top:12px; display:flex; gap:10px; align-items:center; padding:10px;
  border:1px solid var(--stroke-soft); background:#0a1426b3; backdrop-filter: blur(6px);
  border-radius:16px; overflow:auto;
}
.thumb{position:relative; width:48px; height:48px; border-radius:10px; overflow:hidden; border:1px solid var(--stroke-soft); background:#ffffff1a; cursor:pointer; flex:0 0 auto; transition: transform .3s var(--ease)}
.thumb:hover{ transform:translateY(-2px) scale(1.05) }
.thumb::before{content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(180deg,rgba(255,255,255,.45) 0%, rgba(255,255,255,.14) 35%, rgba(255,255,255,.06) 65%, transparent 100%); opacity:.4; transition:.3s var(--ease)}
.thumb:hover::before{opacity:.8}
.thumb::after{content:""; position:absolute; inset:-6px; border-radius:18px; filter:blur(12px); background:var(--glow); opacity:0; transition:.3s var(--ease)}
.thumb:hover::after{opacity:1}

/* GRID 12 */
.grid-12{display:grid; grid-template-columns:repeat(12,1fr); gap:24px}
.span-6{grid-column:span 6}
.span-8{grid-column:span 8}
.span-3{grid-column:span 3}
.span-4{grid-column:span 4}
@media (max-width: 900px){
  .grid-12{grid-template-columns:repeat(1,1fr)}
  .span-6,.span-8,.span-4{grid-column:span 1}
}

/* Cards / boxes */
.card{border-radius:20px; background:#0b162acc; border:1px solid var(--stroke-soft); box-shadow:0 20px 60px rgba(0,0,0,.35)}
.p6{padding:24px}
.img-box, .media-box{
  position:relative; display:flex; align-items:center; justify-content:center;
  border:1px solid #89dcff26; overflow:hidden; border-radius:14px; text-decoration:none; color:#fff;
}

.h40{height:160px} .h72{height:300px}
.img-box span, .media-box span{opacity:.6; font-size:12px; position:relative; z-index:1}
.info-bar{margin-top:14px; height:48px; border-radius:12px; border:1px solid #89dcff26; background:#ffffff0d; display:flex; align-items:center; justify-content:center; box-shadow: inset 0 0 30px #00000055}
.glass-hover::before{content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(180deg,rgba(255,255,255,.45) 0%, rgba(255,255,255,.14) 35%, rgba(255,255,255,.06) 65%, transparent 100%); opacity:.3; transition:.3s var(--ease)}
.glass-hover:hover::before{opacity:.7}
.glass-hover::after{content:""; position:absolute; inset:-8px; border-radius:inherit; background:var(--glow); filter:blur(18px); opacity:0; transition:.3s var(--ease)}
.glass-hover:hover::after{opacity:1}

/* Strip + server */
.strip{height:80px; border-radius:20px; border:1px solid #89dcff26; background:#0a1426b3; backdrop-filter: blur(6px); display:flex; align-items:center; gap:8px; padding:0 8px; overflow:hidden}
.server{height:80px; border-radius:20px; border:1px solid #89dcff26; background:#0a1426b3; backdrop-filter: blur(6px); display:flex; align-items:center; justify-content:center}

/* Two wide panels */
.two-panels{display:grid; grid-template-columns:1fr; gap:18px; margin:32px 0 10px}
@media (min-width:768px){ .two-panels{grid-template-columns:1fr 1fr}}
.panel-wide{height:160px; border-radius:18px; position:relative; border:1px solid #89dcff26; background:linear-gradient(140deg,#071026,#08101a); box-shadow:inset 0 0 30px #00000055; overflow:hidden; transition:transform .3s var(--ease)}
.panel-wide:hover{ transform:translateY(-2px) scale(1.02) }

/* Benefits */
.benefits-grid{display:grid; grid-template-columns:repeat(1,1fr); gap:18px; margin-top:28px}
@media (min-width:720px){ .benefits-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){ .benefits-grid{grid-template-columns:repeat(3,1fr)}}
.card-b{
  position:relative; padding:22px; border-radius:18px;
  background:linear-gradient(135deg,#06102a,#0e0a1a);
  border:1px solid #89dcff26; box-shadow:0 14px 36px rgba(0,0,0,.35);
  display:flex; gap:16px; align-items:flex-start; text-decoration:none; color:#fff;
  overflow:hidden; transition: transform .3s var(--ease);
}
.card-b:hover{ transform:translateY(-2px) scale(1.02) }
.card-b::before{content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(180deg,rgba(255,255,255,.45) 0%, rgba(255,255,255,.1) 45%, transparent 100%); opacity:.2; transition:opacity .3s var(--ease)}
.card-b:hover::before{opacity:.6}
.card-b::after{content:""; position:absolute; inset:-8px; border-radius:inherit; background:var(--glow); filter:blur(18px); opacity:0; transition:.3s var(--ease)}
.card-b:hover::after{opacity:1}
.icon{width:48px; height:48px; border-radius:12px; display:grid; place-items:center; background:#0b162a; border:1px solid #89dcff20; font-size:18px}

/* Cards x3 */
.cards3{display:grid; grid-template-columns:repeat(1,1fr); gap:18px}
@media (min-width:900px){ .cards3{grid-template-columns:repeat(3,1fr)}}
.card3{padding:32px; border-radius:20px; background:#0c1f3399; backdrop-filter: blur(10px); border:1px solid var(--stroke-soft); text-align:center; box-shadow:0 0 25px rgba(137,220,255,.12)}
.btn-full{display:inline-flex; width:100%; justify-content:center; align-items:center; padding:12px 14px; border-radius:12px; border:1px solid #ffffff55; background:#ffffff1a; position:relative; overflow:hidden; text-decoration:none; color:#fff}
.btn-full::before{content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(180deg,rgba(255,255,255,.45) 0%, rgba(255,255,255,.08) 45%, transparent 100%); opacity:.5}
.btn-full::after{content:""; position:absolute; inset:-10px; border-radius:inherit; background:var(--glow); filter:blur(18px); opacity:0; transition:.3s var(--ease)}
.btn-full:hover::after{opacity:1}

/* CTA */
.cta{display:flex; justify-content:center}
.cta-box{border-radius:28px; background:#091a30b3; padding:40px; border:1px solid var(--stroke-soft); text-align:center; box-shadow:0 25px 60px rgba(0,0,0,.45); max-width:900px}
.cta-box h3{font-size:28px; margin:0 0 10px}
.cta-actions{display:flex; gap:12px; justify-content:center; margin-top:16px}
.btn-primary{padding:12px 18px; border-radius:999px; background:linear-gradient(135deg,#2f4bd6,#5a3dd8); color:white; text-decoration:none; font-weight:600; box-shadow: 0 10px 24px rgba(47,75,214,.35)}
.btn-ghost{padding:12px 18px; border-radius:999px; background:#ffffff1a; border:1px solid var(--stroke-soft); color:#fff; text-decoration:none}

/* Footer */
.footer{border-top:1px solid #89dcff2e; background:#07142799; backdrop-filter: blur(8px); margin-top:56px}
.footer-inner{display:flex; align-items:center; justify-content:space-between; padding:28px 0}

/* Blobs */
.blobs{position:fixed; inset:0; pointer-events:none; z-index:-1}
.blob{position:absolute; border-radius:999px; filter:blur(60px)}
.blob-a{left:25%; top:33%; width:600px; height:600px; background:#89dcff22}
.blob-b{right:25%; bottom:25%; width:500px; height:500px; background:#1fb6ff22}

/* Effet lumineux sur la barre d'infos */
.info-bar.info-glow {
  position: relative;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #89dcff40;
  background: #0a1426b3;
  box-shadow: inset 0 0 20px #00000055, 0 0 20px rgba(137,220,255,0.25);
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease);
}

/* Animation et glow au survol */
.info-bar.info-glow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 0 30px #00000055, 0 0 35px rgba(137,220,255,0.45);
  border-color: #89dcff80;
}
/* Bouton "Informations" lumineux mais compact */
.info-bar.info-glow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid #89dcff33;
  background: #0a1426b3;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  margin-top: 14px;
  box-shadow: 0 0 12px rgba(137,220,255,0.2);
  transition: all 0.3s var(--ease);
}

/* Effet de glow doux au survol */
.info-bar.info-glow:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 20px rgba(137,220,255,0.5);
  border-color: #89dcff66;
  background: rgba(10,20,38,0.85);
}
/* Image bannière : ne dépasse plus */
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
}

/* Bouton lumineux "Informations" */
.info-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s var(--ease);
}

.info-glow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 25px rgba(137,220,255,0.4);
}
/* Empêche la bannière de déborder */
.media-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: center;
  display: block;
  padding: 5px;
  box-sizing: border-box;
}

/* Ajustement du bouton "Informations" */
.img-box.h20 {
  height: 60px; /* plus compact que h40 */
}
/* Aligne verticalement la zone serveur avec les strips */
.align-server-strip {
  display: flex;
  align-items: center;
}

/* ✅ Centre le contenu verticalement sans casser le grid */
.grid-12.mt.animate {
  display: grid; /* on garde le mode grid */
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center; /* aligne verticalement les enfants */
}

/* Garde les strips bien empilées */
.col-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Ajuste la hauteur des strips */
.col-right .strip {
  height: 75px;
  align-items: center;
  justify-content: flex-start;
}
/* ================================
   🎨 Fonts : Mystic Japonais (Marcellus SC + Inter)
   ================================ */

/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Inter:wght@400;500;600;800&display=swap');

/* Police de base pour le corps */
body {
  font-family: 'Inter', system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

/* Police pour les titres et éléments mystiques */
h1, h2, h3, h4, .title, .brand-name, .chip {
  font-family: 'Marcellus SC', serif;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.discord-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* Texte ≫ Discord ≪ */
.discord-label {
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.discord-label:hover {
  color: #89dcff;
  text-shadow: 0 0 10px rgba(137,220,255,0.6);
}

/* Conteneur de l’image */
.copy-icon-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Image du bouton copier */
.copy-icon {
  width: 22px;
  height: 22px;
  opacity: 0.9;
  transition: all 0.3s var(--ease);
  filter: drop-shadow(0 0 4px rgba(137,220,255,0.3));
}

.copy-icon:hover {
  transform: scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(137,220,255,0.8));
}


.copy-status {
  position: absolute;
  bottom: 26px;
  font-size: 12px;
  color: #89dcff;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.copy-icon-box.copied .copy-status {
  opacity: 1;
  transform: translateY(-2px);
}
/* ===========================================
   ✨ Animation Halo Réseaux Sociaux Mystic (multi-couleurs)
   =========================================== */

/* Animation de pulsation commune */
@keyframes social-glow-pulse {
  0% {
    text-shadow: 0 0 6px currentColor,
                 0 0 12px currentColor,
                 0 0 20px rgba(255,255,255,0.1);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 14px currentColor,
                 0 0 26px currentColor,
                 0 0 50px currentColor;
    transform: scale(1.08);
  }
  100% {
    text-shadow: 0 0 6px currentColor,
                 0 0 12px currentColor,
                 0 0 20px rgba(255,255,255,0.1);
    transform: scale(1);
  }
}


/* Intensifie le halo au survol */
.social-links a:hover i {
  animation-duration: 1.5s;
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px currentColor)
          drop-shadow(0 0 25px currentColor);
}

/* 🌕 YouTube — halo rouge rosé */
.social-links a[aria-label*="YouTube"] i {
  color: #ffb3b3;
}

/* 🌸 Instagram — halo rose clair */
.social-links a[aria-label*="Instagram"] i {
  color: #ffd7f7;
}

/* 💠 TikTok — halo bleu clair */
.social-links a[aria-label*="TikTok"] i {
  color: #c7f2ff;
}

/* 🌐 Ajuste le texte en cohérence */
.social-links span {
  color: var(--muted);
  transition: all 0.3s ease;
}

.social-links a:hover span {
  color: currentColor;
  text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}











.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}



.nav-glass .menu a i {
  margin-right: 6px;
  opacity: 0.85;
  font-size: 14px;
  transition: all 0.25s ease;
}

.nav-glass .menu a:hover i {
  opacity: 1;
  transform: translateY(-1px);
  text-shadow: 0 0 8px rgba(137,220,255,0.6);
}

/* =========================================================
   📦 Cards plus larges, centrées et 100% responsive
   ========================================================= */

.card {
  max-width: 1500px;   /* largeur max sur desktop */
  width: 100%;        /* prend toute la largeur possible */
  margin: 0 auto;     /* centrée horizontalement */
}

/* 📱 Version mobile : occupe toute la largeur sans débordement */
@media (max-width: 1500px) {
  .card {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  grid-column: 1 / -1;
  }
}
/* ============================================
   ✨ Police adaptée pour les paragraphes
   ============================================ */

/* Paragraphes, listes, italique */
p,
em,
li,
ul,
ol {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;      /* Lisibilité ++ */
  letter-spacing: 0.01em; /* léger espacement */
  color: #e8f1ff;         /* blanc doux */
  margin-bottom: 14px;
}

/* Titre mystiques uniquement */
h1, h2, h3, h4 {
  font-family: 'Marcellus SC', serif !important;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* === TABLEAU GLASS MYSTIC — version ultra douce === */

.mystic-table-wrapper table.mystic-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;

  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(14px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(160%) !important;

  border-radius: 16px !important;
  overflow: hidden !important;

  border: 1px solid rgba(137, 220, 255, 0.25) !important;
  box-shadow: 0 0 22px rgba(137, 220, 255, 0.18) !important;
}

/* En-tête */
.mystic-table-wrapper .mystic-table thead th {
  padding: 14px 16px !important;
  background: rgba(137, 220, 255, 0.12) !important;
  border-bottom: 1px solid rgba(137, 220, 255, 0.25) !important;
  color: #e9f7ff !important;
  font-weight: 600 !important;
  text-shadow: 0 0 6px rgba(137, 220, 255, 0.35) !important;
}

/* Lignes douces (plus de zèbres agressifs) */
.mystic-table-wrapper .mystic-table tbody tr {
  background: rgba(255, 255, 255, 0.015) !important;
  transition: background 0.2s ease !important;
}

/* Alternance ULTRA légère */
.mystic-table-wrapper .mystic-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025) !important;
}

/* Hover doux */
.mystic-table-wrapper .mystic-table tbody tr:hover {
  background: rgba(137, 220, 255, 0.10) !important;
  backdrop-filter: blur(18px) !important;
}

/* Cellules */
.mystic-table-wrapper .mystic-table td {
  padding: 14px 16px !important;
  color: #e9f1ff !important;
  font-size: 15px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

/* Dernière ligne sans bordure */
.mystic-table-wrapper .mystic-table tbody tr:last-child td {
  border-bottom: none !important;
}

/* === SÉPARATION VERTICALE DES COLONNES (léger) === */
.mystic-table-wrapper .mystic-table td + td,
.mystic-table-wrapper .mystic-table th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* ============================================
   ✦ Bouton "remonter en haut" Mystic ✦
   ============================================ */

#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 90px;
  width: 50px;
  height: 50px;
  background: rgba(8,20,35,0.85);
  border: 1px solid rgba(137,220,255,0.45);
  border-radius: 50%;
  color: #aee4ff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  box-shadow: 
      0 0 12px rgba(137,220,255,0.25),
      inset 0 0 15px rgba(137,220,255,0.15);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease, transform .25s ease;
  z-index: 1500;
}

/* Apparition quand on scroll */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* Effet hover */
#scrollTopBtn:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 20px rgba(137,220,255,0.6),
    inset 0 0 25px rgba(137,220,255,0.35);
  color: #dff9ff;
}
