/* =========================
   GLOBAL
========================= */
body {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  background-color: #05050a;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

.neon-text {
  text-shadow:
    0 0 12px #4A00FF,
    0 0 28px #6A00FF,
    0 0 42px #8A2BFF;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* =========================
   GLASS / CARDS
========================= */
.glass {
  position: relative;
  backdrop-filter: blur(18px);
  background: rgba(15, 10, 30, 0.35);
  border: 1px solid rgba(120, 60, 255, 0.4);
  box-shadow:
    0 0 20px rgba(90, 0, 255, 0.4),
    inset 0 0 25px rgba(60, 0, 150, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 0 35px rgba(120, 60, 255, 0.8),
    inset 0 0 40px rgba(90, 0, 255, 0.45);
  border-color: rgba(150, 90, 255, 0.9);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #4A00FF, #6A00FF, #8A2BFF);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.glass:hover::before {
  opacity: 0.85;
}

/* =========================
   REVEAL ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================
   HEADER NEON
========================= */
.header-neon::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,#4A00FF,#6A00FF,#8A2BFF);
  box-shadow:
    0 0 12px rgba(106,0,255,.9),
    0 0 28px rgba(138,43,255,.6);
  opacity: .65;
  animation: neonPulse 4s ease-in-out infinite;
}

@keyframes neonPulse {
  0%,100% { opacity:.45 }
  50% { opacity:.9 }
}

/* =========================
   HERO
========================= */
.hero-subtext {
  text-shadow: 0 2px 8px rgba(0,0,0,.65);
}

.hero-gradient::after {
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:180px;
  pointer-events:none;
  background: linear-gradient(
    to bottom,
    rgba(5,5,10,0) 0%,
    rgba(5,5,10,0.65) 45%,
    #05050a 100%
  );
}

/* =========================
   RESERVATION MODAL
========================= */
.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.reservation-modal.hidden { display: none; }

.reservation-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 10, 0.82);
  backdrop-filter: blur(4px);
}

.reservation-modal__panel {
  position: relative;
  width: min(760px, 96vw);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(180deg, #10142a 0%, #090c1b 100%);
  border: 1px solid rgba(144, 119, 255, 0.45);
  box-shadow: 0 20px 80px rgba(0,0,0,.55);
}

.reservation-modal__close {
  position: absolute; right: 10px; top: 10px;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 0; color: #fff; font-size: 24px;
}
.booking-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.booking-step-head__chips {
  margin: 0;
  justify-content: flex-end;
}
.booking-step-head__chips li {
  font-size: .78rem;
  padding: .32rem .62rem;
}
.booking-payment-summary {
  border: 1px solid rgba(125, 92, 255, .48);
  background: linear-gradient(180deg, rgba(31, 41, 85, .55), rgba(15, 17, 40, .45));
  border-radius: 12px;
  padding: 10px 12px;
  color: #dbe4ff;
  font-size: .95rem;
}
.booking-payment-reassurance {
  text-align: center;
  color: #d1d5db;
  font-size: .92rem;
  line-height: 1.45;
}

.reservation-steps { display: flex; gap: 10px; margin-bottom: 16px; }
.reservation-step {
  border: 1px solid rgba(255,255,255,.18); background: transparent; color: #d1d5db;
  border-radius: 999px; padding: 8px 14px; font-weight: 600;
}
.reservation-step.is-active { border-color: #60a5fa; color: #fff; background: rgba(96,165,250,.14); }

.reservation-step-panel { display: none; }
.reservation-step-panel.is-active { display: block; }
.reservation-label { display: block; margin: 10px 0 6px; color: #cbd5e1; font-size: .95rem; }
.reservation-input {
  width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(5,8,20,.7); color: #fff; padding: 12px;
}
.players-counter {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  border-radius: 12px;
  border: 1px solid rgba(133, 109, 255, .55);
  background: linear-gradient(180deg, rgba(6,10,24,.95), rgba(4,8,20,.95));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 16px rgba(124,58,237,.22);
}
.players-counter button {
  border: 0;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
.players-counter .reservation-input {
  border: 0;
  text-align: center;
  background: transparent;
  font-weight: 700;
}
.players-counter .reservation-input::-webkit-outer-spin-button,
.players-counter .reservation-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.players-rule-hint {
  margin-top: 8px;
  color: #a6b1d4;
  font-size: .9rem;
  text-align: center;
}
.reservation-actions { margin-top: 14px; display:flex; gap:10px; justify-content: flex-end; }
.reservation-primary-btn, .reservation-secondary-btn {
  border-radius: 12px; padding: 11px 16px; font-weight: 700; border: 0;
}
.reservation-primary-btn { background: linear-gradient(90deg,#246bff,#7c3aed); color: #fff; }
.reservation-secondary-btn { background: rgba(255,255,255,.1); color: #fff; }
#bookingNextStep { margin: 14px auto 0; display: block; }

.booking-date-nav {
  display: grid; grid-template-columns: 62px 1fr 62px;
  border-radius: 0; overflow: hidden; border: 1px solid #e5e7eb; margin-top: 10px;
}
.booking-date-nav button {
  border: 0; background: #ff1ea8; color: #fff; font-size: 2rem; line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), 0 0 12px rgba(255, 30, 168, .55);
}
.booking-date-nav #bookingDateLabelWrap {
  background: #f4f4f5; color: #1f3358; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 0 10px;
}
.booking-date-nav #bookingDateLabel {
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; text-transform: capitalize;
}
.booking-date-nav #bookingOpenPicker {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid #c9ccd5;
  background: #fff; color: #6b7280; font-size: 1rem; line-height: 1;
  box-shadow: none;
}
.booking-date-native {
  position: absolute !important;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

/* =========================
   NEON UNDERLINE
========================= */
.neon-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.neon-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,#4A00FF,#6A00FF,#8A2BFF);
  box-shadow:
    0 0 10px rgba(106,0,255,.8),
    0 0 24px rgba(138,43,255,.6);
  opacity: .7;
  animation: underlinePulse 4s ease-in-out infinite;
}

@keyframes underlinePulse {
  0%,100% { opacity:.4 }
  50% { opacity:.9 }
}
/* ===============================
   SECTION AVENTURES – GLOBAL
================================ */

.time-machine-adventures {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  background: #05050a;
}

/* Halo global doux */
.time-machine-adventures::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(
      ellipse at top center,
      rgba(106, 0, 255, 0.18),
      rgba(5, 5, 10, 0) 55%
    ),
    radial-gradient(
      ellipse at bottom center,
      rgba(106, 0, 255, 0.16),
      rgba(5, 5, 10, 0) 60%
    );
  pointer-events: none;
  z-index: 0;
}

/* ===============================
   WRAPPER
================================ */

.adventures-wrapper {
  position: relative;
  z-index: 2;
}

/* ===============================
   DESKTOP – GRILLE
================================ */

.adventures-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ===============================
   CARTE
================================ */

.adventure-card {
  position: relative;
  height: 520px;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #0b0b14;
  box-shadow:
    0 30px 90px rgba(106, 0, 255, 0.25),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Image immersive */
.adventure-card .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.05);
}

/* Dégradé texte doux */
.adventure-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,10,0.96) 20%,
    rgba(5,5,10,0.55) 45%,
    rgba(5,5,10,0.12) 70%,
    rgba(5,5,10,0.05) 100%
  );
  z-index: 1;
}

/* Sticker */
.adventure-card .sticker {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 56px;
  height: 56px;
  z-index: 3;
  filter: drop-shadow(0 0 14px rgba(106,0,255,0.55));
}

/* Texte */
.adventure-card .card-overlay {
  position: absolute;
  bottom: 2rem;
  left: 1.8rem;
  right: 1.8rem;
  z-index: 2;
}

.adventure-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.adventure-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d8d8ff;
}

/* ===============================
   MOBILE – CARROUSEL
================================ */

@media (max-width: 1023px) {

  .adventures-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 0 1.5rem 3rem;
  }

  .adventure-card {
    flex: 0 0 85%;
    max-width: 340px;
    scroll-snap-align: center;
  }

  /* Indice scroll */
  .adventures-wrapper::after {
    content: "›";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.8rem;
    color: rgba(180,160,255,0.55);
    animation: scrollHint 1.8s infinite;
    pointer-events: none;
  }

  @keyframes scrollHint {
    0%,100% {
      opacity: 0.3;
      transform: translateY(-50%) translateX(0);
    }
    50% {
      opacity: 1;
      transform: translateY(-50%) translateX(10px);
    }
  }
}

/* ===============================
   FADE ENTRE SECTIONS
================================ */

.section {
  position: relative;
  isolation: isolate; /* empêche les overlays de déborder */
}

/* Fade TOP */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(5,5,10,1) 0%,
    rgba(5,5,10,0.6) 40%,
    rgba(5,5,10,0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Fade BOTTOM */
.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to top,
    rgba(5,5,10,1) 0%,
    rgba(5,5,10,0.6) 40%,
    rgba(5,5,10,0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Le contenu reste au-dessus */
.section > * {
  position: relative;
  z-index: 2;
}

/* ===============================
   AUTRES EXPERIENCES
================================ */

.other-experiences {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Fade doux entre sections */
.other-experiences::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(5,5,10,0) 0%,
    rgba(5,5,10,0.85) 65%,
    #05050a 100%
  );
  pointer-events: none;
}

/* GRID */
.experiences-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 0 1.5rem;
}

/* CARTE */
.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #0b0b14;
  box-shadow:
    0 25px 70px rgba(106, 0, 255, 0.22);
  transition: transform .4s ease, box-shadow .4s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 90px rgba(106, 0, 255, 0.45);
}

/* IMAGE */
.experience-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

/* TEXTE */
.experience-content {
  padding: 2.2rem;
  text-align: center;
}

.experience-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.experience-content p {
  color: #d6d6ff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

/* BOUTON */
.experience-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 0.75rem 2.2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,.24);
  background: linear-gradient(135deg, rgba(9,12,28,.9), rgba(12,8,30,.9));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 20px rgba(106,0,255,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.experience-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(124, 60, 255, .75);
  box-shadow: 0 0 18px rgba(124, 60, 255, .38);
}

.experience-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(162, 126, 255, .85);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 0 28px rgba(124,60,255,.42);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-image {
    height: 220px;
  }
}

/* ===============================
   CATEGORIES ESCAPE GAME VR
================================ */

.escape-category {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 8rem;
  padding: 0 2rem;
}

/* Inversion gauche / droite */
.escape-category.reverse {
  direction: rtl;
}
.escape-category.reverse > * {
  direction: ltr;
}

/* ===============================
   MEDIA (IMAGE)
================================ */

.category-media {
  position: relative;
  width: 75%;
  height: 75%;
  margin: 0 auto;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Coupe en biais -25deg */
  clip-path: polygon(
    0% 0%,
    100% 0%,
    92% 100%,
    0% 85%
  );

  filter: brightness(0.85) contrast(1.05);
}

/* Fade sombre vers le texte */
.category-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(5,5,10,0.9) 0%,
    rgba(5,5,10,0.5) 35%,
    rgba(5,5,10,0) 70%
  );
}

/* Inversion du fade quand image à droite */
.escape-category.reverse .category-media::after {
  background: linear-gradient(
    to left,
    rgba(5,5,10,0.9) 0%,
    rgba(5,5,10,0.5) 35%,
    rgba(5,5,10,0) 70%
  );
}

/* ===============================
   TEXTE
================================ */

.category-content {
  max-width: 520px;
}

.category-content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-content p {
  color: #d0d0ff;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* ===============================
   TOGGLE AVENTURES
================================ */

.category-toggle {
  background: none;
  border: none;
  color: #8A7CFF;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
}

.category-toggle:hover {
  text-decoration: underline;
}

/* Liste masquée par défaut */
.category-list {
  display: none;
  margin-top: 1rem;
  padding-left: 1rem;
  list-style: none;
}

.category-list li {
  padding: 0.3rem 0;
  color: #ffffff;
  opacity: 0.85;
}

/* Ouvert */
.escape-category.is-open .category-list {
  display: block;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 1024px) {
  .escape-category {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .escape-category.reverse {
    direction: ltr;
  }

  .category-media {
    order: 2;
    width: 75%;
  }

  /* Fade toujours vers le texte (au-dessus) */
  .category-media::after {
    background: linear-gradient(
      to top,
      rgba(5,5,10,0.95) 0%,
      rgba(5,5,10,0.6) 35%,
      rgba(5,5,10,0) 70%
    );
  }

  .category-content {
    order: 1;
    text-align: left;
  }
}

#reservation{
  margin-top: -1rem; /* -0.5rem / -1rem / -2rem */
}
 /* ===============================
     ESCAPE GAME VR — PATCH COHÉRENCE HOME
     (s’appuie sur tes classes existantes)
  ================================ */

  /* 1) On transforme la rangée en "carte" home-like */
  #categories.escape-categories .escape-category{
    padding: 2.2rem;
    border-radius: 1.6rem;
    overflow: hidden;

    background: rgba(15, 10, 30, 0.35);
    border: 1px solid rgba(120, 60, 255, 0.30);
    backdrop-filter: blur(18px);

    box-shadow:
      0 25px 70px rgba(106, 0, 255, 0.22),
      inset 0 0 0 1px rgba(255,255,255,0.04);

    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }

  #categories.escape-categories .escape-category:hover{
    transform: translateY(-6px);
    border-color: rgba(150, 90, 255, 0.60);
    box-shadow:
      0 35px 90px rgba(106, 0, 255, 0.35),
      inset 0 0 0 1px rgba(255,255,255,0.05);
  }

  /* halo discret (évite le "gros bandeau violet" que tu vois sur tes screens) */
  #categories.escape-categories .escape-category::before{
    content:"";
    position:absolute;
    inset:-50%;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(106,0,255,0.14), rgba(5,5,10,0) 60%),
      radial-gradient(ellipse at 70% 80%, rgba(106,0,255,0.10), rgba(5,5,10,0) 62%);
    pointer-events:none;
    z-index:0;
  }

  #categories.escape-categories .escape-category > *{ position: relative; z-index: 1; }

  /* 2) Image : glow + micro-zoom + ombre (comme tes visuels home) */
  #categories.escape-categories .category-media{
    width: 100%;
    height: auto;
    max-width: 520px;
    margin: 0 auto;
    filter: drop-shadow(0 0 18px rgba(106,0,255,0.35));
  }

  #categories.escape-categories .category-media img{
    transform: scale(1.03);
    transition: transform .35s ease, filter .35s ease;
  }

  #categories.escape-categories .escape-category:hover .category-media img{
    transform: scale(1.06);
    filter: brightness(0.92) contrast(1.08);
  }

  /* 3) Typo alignée home */
  #categories.escape-categories .category-content h3{ font-size: 2.2rem; }
  #categories.escape-categories .category-content p{ font-size: 1rem; color:#d0d0ff; }

  /* chips (optionnel) */
  .egvr-chips{ display:flex; flex-wrap:wrap; gap:.6rem; margin: 0 0 1.2rem; padding:0; list-style:none; }
  .egvr-chips li{
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(214,214,255,0.95);
    font-size: .92rem;
  }

  /* 4) Bouton toggle : on colle au style .experience-btn */
  #categories.escape-categories .category-toggle{
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #4A00FF, #6A00FF);
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.55);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  #categories.escape-categories .category-toggle:hover{
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(138, 43, 255, 0.85);
    text-decoration: none; /* annule le underline du hover précédent */
  }

  #categories.escape-categories .category-toggle .chev{
    width: 10px;
    height: 10px;
    display: inline-block;
    border-right: 2px solid rgba(255,255,255,0.95);
    border-bottom: 2px solid rgba(255,255,255,0.95);
    transform: rotate(45deg);
    transition: transform .18s ease;
    margin-top: -1px;
  }

  /* 5) Liste (même esprit que tes cards) */
  #categories.escape-categories .category-list{
    margin-top: 1.2rem;
    padding-left: 0;
    list-style: none;

    /* accordéon sans display none (transition plus clean) */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
  }

  #categories.escape-categories .escape-category.is-open .category-list{
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
  }

  #categories.escape-categories .escape-category.is-open .category-toggle .chev{
    transform: rotate(225deg);
  }

  #categories.escape-categories .category-list li{
    padding: .85rem 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(214,214,255,0.95);
    margin-bottom: .7rem;
  }

  /* 6) Alternance demandée (sans .reverse) */
  @media (min-width: 1024px){
    #categories.escape-categories .escape-category{ grid-template-columns: 1fr 1fr; }

    /* texte gauche / image droite */
    #categories.escape-categories .escape-category[data-layout="text-left"] .category-content{ order: 1; }
    #categories.escape-categories .escape-category[data-layout="text-left"] .category-media{ order: 2; }

    /* image gauche / texte droite */
    #categories.escape-categories .escape-category[data-layout="image-left"] .category-media{ order: 1; }
    #categories.escape-categories .escape-category[data-layout="image-left"] .category-content{ order: 2; }

    /* fade image vers le texte selon la position */
    #categories.escape-categories .escape-category[data-layout="text-left"] .category-media::after{
      background: linear-gradient(to left, rgba(5,5,10,0.9) 0%, rgba(5,5,10,0.5) 35%, rgba(5,5,10,0) 70%);
    }

    #categories.escape-categories .escape-category[data-layout="image-left"] .category-media::after{
      background: linear-gradient(to right, rgba(5,5,10,0.9) 0%, rgba(5,5,10,0.5) 35%, rgba(5,5,10,0) 70%);
    }
  }

  /* mobile : on garde tes règles existantes, rien à casser */


/* ===============================
   ESCAPE GAME VR — Ajustements feedback
   - pas de cartes
   - images non déformées
   - sous-titres néon
================================ */
#categories.escape-categories .escape-category{
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}

#categories.escape-categories .escape-category:hover{
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

#categories.escape-categories .escape-category::before{
  content: none;
}

#categories.escape-categories .category-media{
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 16px rgba(106,0,255,0.28));
}

#categories.escape-categories .category-media img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  clip-path: none;
  border-radius: 1rem;
}

#categories.escape-categories .escape-category:hover .category-media img{
  transform: none;
  filter: brightness(0.94) contrast(1.06);
}

#categories.escape-categories .category-content h3{
  color: #f4eeff;
  text-shadow:
    0 0 10px rgba(106,0,255,0.72),
    0 0 24px rgba(138,43,255,0.62),
    0 0 42px rgba(74,0,255,0.52);
}


/* ===============================
   ESCAPE GAME VR — Stabilisation layout
   - structure sans "carte"
   - formats image respectés (pas d'étirement)
   - rendu plus ancré, moins flottant
================================ */
#categories.escape-categories .escape-category{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1240px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 0 0 clamp(2rem, 4vw, 3rem);

  background: transparent;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;

  transform: none;
  transition: none;
}

#categories.escape-categories .escape-category:last-of-type{
  border-bottom: 0;
  padding-bottom: 0;
}

#categories.escape-categories .escape-category::before{
  content: none;
}

#categories.escape-categories .escape-category:hover{
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

#categories.escape-categories .category-media{
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(106,0,255,0.22));
}

#categories.escape-categories .category-media::after{
  content: none;
}

#categories.escape-categories .category-media img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  aspect-ratio: auto;
  clip-path: none;
  border-radius: 1rem;
  transform: none;
}

#categories.escape-categories .escape-category:hover .category-media img{
  transform: none;
  filter: none;
}

#categories.escape-categories .category-content h3{
  color: #f4eeff;
  text-shadow:
    0 0 9px rgba(106,0,255,0.65),
    0 0 20px rgba(138,43,255,0.55),
    0 0 34px rgba(74,0,255,0.45);
}

#categories.escape-categories .egvr-chips li,
#categories.escape-categories .category-list li{
  transform: none;
  transition: border-color .2s ease, background-color .2s ease;
}

#categories.escape-categories .egvr-chips{
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

#categories.escape-categories .egvr-chips li{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--chip-border, rgba(255,255,255,0.25));
  background: radial-gradient(circle at 10% 10%, var(--chip-glow, rgba(255,255,255,0.14)) 0%, rgba(5,5,10,0.28) 55%, rgba(5,5,10,0.58) 100%);
  color: var(--chip-text, #d6d6ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 0 22px color-mix(in srgb, var(--chip-glow, #6A00FF) 52%, transparent);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1;
}

#categories.escape-categories .egvr-chips .egvr-chip-icon{
  font-size: 1.05rem;
  line-height: 1;
  opacity: 0.95;
}

#categories.escape-categories .egvr-chips .chip-cyan{ --chip-text:#35e9ff; --chip-border:rgba(53,233,255,.55); --chip-glow:rgba(34,211,238,.30); }
#categories.escape-categories .egvr-chips .chip-violet{ --chip-text:#b54bff; --chip-border:rgba(181,75,255,.48); --chip-glow:rgba(168,85,247,.28); }
#categories.escape-categories .egvr-chips .chip-fuchsia{ --chip-text:#ff2f8f; --chip-border:rgba(255,47,143,.52); --chip-glow:rgba(236,72,153,.28); }
#categories.escape-categories .egvr-chips .chip-pink{ --chip-text:#ff3aa6; --chip-border:rgba(255,58,166,.52); --chip-glow:rgba(244,63,94,.26); }
#categories.escape-categories .egvr-chips .chip-red{ --chip-text:#ff7676; --chip-border:rgba(255,118,118,.48); --chip-glow:rgba(239,68,68,.24); }
#categories.escape-categories .egvr-chips .chip-orange{ --chip-text:#ffab38; --chip-border:rgba(255,171,56,.56); --chip-glow:rgba(251,146,60,.28); }
#categories.escape-categories .egvr-chips .chip-green{ --chip-text:#35ff52; --chip-border:rgba(53,255,82,.5); --chip-glow:rgba(34,197,94,.26); }
#categories.escape-categories .egvr-chips .chip-teal{ --chip-text:#33f3e6; --chip-border:rgba(51,243,230,.5); --chip-glow:rgba(45,212,191,.26); }
#categories.escape-categories .egvr-chips .chip-sky{ --chip-text:#32d8ff; --chip-border:rgba(50,216,255,.5); --chip-glow:rgba(14,165,233,.28); }
#categories.escape-categories .egvr-chips .chip-purple{ --chip-text:#b944ff; --chip-border:rgba(185,68,255,.48); --chip-glow:rgba(168,85,247,.24); }
#categories.escape-categories .egvr-chips .chip-gold{ --chip-text:#ffd439; --chip-border:rgba(255,212,57,.56); --chip-glow:rgba(250,204,21,.28); }
#categories.escape-categories .egvr-chips .chip-emerald{ --chip-text:#4bf2b9; --chip-border:rgba(75,242,185,.5); --chip-glow:rgba(16,185,129,.26); }

@media (max-width: 1023px){
  #categories.escape-categories .escape-category{
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  #categories.escape-categories .escape-category .category-media,
  #categories.escape-categories .escape-category .category-content{
    order: initial;
  }

  #categories.escape-categories .category-media img{
    max-height: none;
  }
}

/* ===============================
   ESCAPE GAME VR — Images catégories style HERO (-30%)
================================ */
#categories.escape-categories .category-media{
  width: 70%; /* réduction ~30% */
  max-width: 434px; /* 620 -> 434 */
  margin: 0 auto;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 0 55px rgba(106,0,255,0.30);
  filter: none;
  position: relative;
}

#categories.escape-categories .category-media img{
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 0;
}

#categories.escape-categories .category-media::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#categories.escape-categories .escape-category[data-layout="image-left"] .category-media::after{
  background: linear-gradient(to right, rgba(5,5,10,0.55) 0%, rgba(5,5,10,0) 62%);
}

#categories.escape-categories .escape-category[data-layout="text-left"] .category-media::after{
  background: linear-gradient(to left, rgba(5,5,10,0.55) 0%, rgba(5,5,10,0) 62%);
}

@media (max-width: 1023px){
  #categories.escape-categories .category-media{
    width: 100%;
    max-width: 434px;
  }

  #categories.escape-categories .category-media::after{
    background: linear-gradient(to top, rgba(5,5,10,0.55) 0%, rgba(5,5,10,0) 62%);
  }
}

/* ===============================
   ESCAPE GAME VR — Tilt 3D sur images catégories
================================ */
#categories.escape-categories .category-media.card-3d{
  perspective: 1200px;
  transform-style: preserve-3d;
}

#categories.escape-categories .category-media.card-3d .card-3d-inner{
  position: relative;
  border-radius: inherit;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg) scale(1);
  transition: transform .2s ease-out, box-shadow .2s ease-out;
  will-change: transform;
  box-shadow: 0 16px 38px rgba(20, 6, 45, 0.55);
}

#categories.escape-categories .category-media.card-3d:hover .card-3d-inner{
  box-shadow: 0 22px 48px rgba(78, 24, 145, 0.55);
}

#categories.escape-categories .category-media.card-3d .card-3d-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,.24), rgba(255,255,255,0) 55%);
  opacity: .32;
  transition: opacity .2s ease;
}

#categories.escape-categories .category-media.card-3d:hover .card-3d-inner::before{
  opacity: .5;
}

#categories.escape-categories .category-media.card-3d .card-3d-inner img{
  transform: translateZ(26px) scale(1.02);
}

#categories.escape-categories .category-media.card-3d::after{
  z-index: 2;
}

@media (hover: none){
  #categories.escape-categories .category-media.card-3d .card-3d-inner,
  #categories.escape-categories .category-media.card-3d .card-3d-inner img{
    transform: none !important;
  }

  #categories.escape-categories .category-media.card-3d .card-3d-inner::before{
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce){
  #categories.escape-categories .category-media.card-3d .card-3d-inner,
  #categories.escape-categories .category-media.card-3d .card-3d-inner img{
    transition: none;
    transform: none !important;
  }

  #categories.escape-categories .category-media.card-3d .card-3d-inner::before{
    display: none;
  }
}

/* ===============================
   ESCAPE GAME VR — Correctifs feedback final
================================ */
/* Supprime définitivement tout fond parasite à gauche des sections */
#categories.escape-categories .escape-category,
#categories.escape-categories .escape-category::before,
#categories.escape-categories .escape-category::after{
  background: transparent !important;
}

#categories.escape-categories .escape-category::before,
#categories.escape-categories .escape-category::after{
  content: none !important;
}

/* Tilt 3D plus visible sur les images */
#categories.escape-categories .category-media.card-3d{
  perspective: 1400px;
  cursor: pointer;
}

#categories.escape-categories .category-media.card-3d .card-3d-inner{
  transform-origin: center center;
}

#categories.escape-categories .category-media.card-3d:hover .card-3d-inner img{
  transform: translateZ(36px) scale(1.05);
}


/* =========================
   CURSOR GLOW
========================= */
#cursorGlow {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 40;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,245,255,0.20) 0%, rgba(168,85,247,0.16) 35%, rgba(5,5,10,0) 72%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity .25s ease;
}

body.cursor-glow-active #cursorGlow {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  #cursorGlow { display: none; }
}








/* =========================
   GLITCH TEXT EFFECT (readable + visible)
========================= */
.glitch { position: relative; }

.glitch.glitch-active {
  animation: glitch-jitter 620ms steps(2, end) 1;
  text-shadow:
    0 0 8px rgba(74, 0, 255, 0.75),
    0 0 18px rgba(106, 0, 255, 0.62),
    0 0 30px rgba(138, 43, 255, 0.45),
    -1.6px 0 rgba(255, 47, 191, 0.45),
    1.6px 0 rgba(50, 231, 255, 0.45);
}

@keyframes glitch-jitter {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-1px, 0.6px); }
  40% { transform: translate(1px, -0.6px); }
  60% { transform: translate(-0.8px, -0.4px); }
  80% { transform: translate(0.9px, 0.5px); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .glitch, .glitch.glitch-active {
    animation: none !important;
    transform: none !important;
    text-shadow: inherit !important;
  }
}

/* =========================
   HOME ADVENTURE CHIPS
========================= */
.home-adventure-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  list-style: none;
  padding: 0;
}

.home-adventure-chips li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .96rem;
  border: 1px solid var(--chip-border, rgba(255,255,255,.24));
  color: var(--chip-text, #d8dcff);
  background: linear-gradient(135deg, rgba(12,14,35,.85), rgba(8,9,22,.92));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 0 16px color-mix(in srgb, var(--chip-glow, #6a00ff) 45%, transparent);
}

.home-adventure-chips .chip-icon { font-size: .9rem; line-height: 1; opacity: .95; }
.home-adventure-chips .chip-cyan{ --chip-text:#35e9ff; --chip-border:rgba(53,233,255,.55); --chip-glow:rgba(34,211,238,.35); }
.home-adventure-chips .chip-violet{ --chip-text:#b54bff; --chip-border:rgba(181,75,255,.48); --chip-glow:rgba(168,85,247,.3); }
.home-adventure-chips .chip-fuchsia{ --chip-text:#ff2f8f; --chip-border:rgba(255,47,143,.5); --chip-glow:rgba(236,72,153,.28); }
.home-adventure-chips .chip-green{ --chip-text:#35ff52; --chip-border:rgba(53,255,82,.5); --chip-glow:rgba(34,197,94,.3); }
.home-adventure-chips .chip-gold{ --chip-text:#ffd439; --chip-border:rgba(255,212,57,.56); --chip-glow:rgba(250,204,21,.3); }
.home-adventure-chips .chip-emerald{ --chip-text:#4bf2b9; --chip-border:rgba(75,242,185,.5); --chip-glow:rgba(16,185,129,.28); }


/* =========================
   FUTURISTIC BUTTONS
========================= */
.btn-future {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.25);
  background: linear-gradient(135deg, rgba(9,12,28,.9), rgba(12,8,30,.9));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 20px rgba(106,0,255,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.btn-future::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid color-mix(in srgb, var(--btn-accent, #6A00FF) 85%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--btn-accent, #6A00FF) 40%, transparent);
  opacity: .9;
}

.btn-future:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--btn-accent, #6A00FF) 75%, #ffffff 25%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 0 28px color-mix(in srgb, var(--btn-accent, #6A00FF) 45%, transparent);
}

.btn-future--violet { --btn-accent: #7c3cff; }
.btn-future--cyan { --btn-accent: #00f2ff; color: #d8feff; }
.btn-future--pink { --btn-accent: #ff1ea8; color: #ffd8f1; }

.hero-cta-group .btn-future {
  min-width: 290px;
}


/* Dark mode Google Map */
.map-dark-embed {
  filter: grayscale(1) invert(92%) hue-rotate(185deg) saturate(0.55) contrast(1.06) brightness(0.86);
}

/* =========================
   VR FUN & ACTION — catégories + panel jeux
========================= */
.vrfa-category-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.vrfa-category-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(140deg, rgba(13,10,32,.72), rgba(9,8,22,.85));
  box-shadow: 0 0 24px rgba(106,0,255,.2);
  display: grid;
  gap: 1rem;
  grid-template-rows: auto 1fr;
}

.vrfa-category-media {
  margin: 0;
  border-radius: .85rem;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(7,8,18,.85);
}

.vrfa-category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.vrfa-category-card:hover .vrfa-category-media img {
  transform: scale(1.03);
}

.vrfa-category-content {
  display: grid;
  align-content: start;
  gap: .5rem;
}

.vrfa-category-card h3 { font-size: 1.4rem; margin: 0; }
.vrfa-category-card p { color: #cfd2ff; margin: 0; }

.vrfa-games-panel {
  max-width: 1200px;
  margin: 1.2rem auto 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}

.vrfa-games-panel.is-open {
  max-height: 1800px;
  opacity: 1;
  transform: translateY(0);
}

.vrfa-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.vrfa-game-item {
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(11,11,20,.8);
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: .45rem;
}

.vrfa-game-logo {
  width: 100%;
  height: 72px;
  object-fit: contain;
  margin-bottom: .7rem;
  filter: drop-shadow(0 0 10px rgba(106, 0, 255, .35));
}

.vrfa-game-item h4 { margin: 0; font-size: 1.05rem; }
.vrfa-game-item p { margin: 0; color: #9ea3d8; font-size: .9rem; line-height: 1.45; }
.vrfa-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .24rem .6rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.18);
}
.vrfa-badge--comp { color: #ffb347; border-color: rgba(255,179,71,.45); background: rgba(255,179,71,.12); }
.vrfa-badge--fast { color: #ff8da1; border-color: rgba(255,141,161,.45); background: rgba(255,141,161,.12); }
.vrfa-badge--coop { color: #62f2d4; border-color: rgba(98,242,212,.45); background: rgba(98,242,212,.12); }
.vrfa-badge--group { color: #8ecbff; border-color: rgba(142,203,255,.45); background: rgba(142,203,255,.12); }
.vrfa-badge--intense { color: #ff7a7a; border-color: rgba(255,122,122,.45); background: rgba(255,122,122,.12); }
.vrfa-badge--fun { color: #ffd86a; border-color: rgba(255,216,106,.45); background: rgba(255,216,106,.12); }
.vrfa-badge--family { color: #b6ff89; border-color: rgba(182,255,137,.45); background: rgba(182,255,137,.12); }
.vrfa-badge--chaos { color: #f7b0ff; border-color: rgba(247,176,255,.45); background: rgba(247,176,255,.12); }
.vrfa-badge--easy { color: #84f0ff; border-color: rgba(132,240,255,.45); background: rgba(132,240,255,.12); }
.vrfa-badge--beginner { color: #bba4ff; border-color: rgba(187,164,255,.45); background: rgba(187,164,255,.12); }
.vrfa-game-cta {
  display: inline-block;
  margin-top: .35rem;
  width: fit-content;
  padding: .5rem .95rem;
  border-radius: .6rem;
  font-weight: 700;
  border: 1px solid rgba(0,242,255,.42);
  color: #d8feff;
  background: linear-gradient(180deg, rgba(0,242,255,.18), rgba(0,242,255,.05));
  box-shadow: 0 0 14px rgba(0,242,255,.25);
}
.vrfa-game-cta:hover { filter: brightness(1.08); }

@media (max-width: 1279px){
  .vrfa-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1023px){
  .vrfa-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vrfa-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px){
  .vrfa-category-grid { grid-template-columns: 1fr; }
}

/* Booking module runtime */
.booking-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.booking-slot-btn {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px;
  background: rgba(15,15,30,.7);
  color: #fff;
  transition: all .2s ease;
}
.booking-slot-btn.available {
  border-color: #7b4dff;
  box-shadow: 0 0 14px rgba(106,0,255,.35);
  cursor: pointer;
}
.booking-slot-btn.available:hover { transform: translateY(-1px); }
.booking-slot-btn.selected {
  background: rgba(106,0,255,.65);
  border-color: #b198ff;
}
.booking-slot-btn.unavailable {
  opacity: .45;
  background: rgba(80,80,90,.5);
  cursor: not-allowed;
}
.booking-legend { display:flex; gap:8px; margin-bottom:10px; flex-wrap:wrap; font-size:12px; }
.booking-legend span { padding:4px 8px; border-radius:999px; }
.booking-legend .l-av { background:#6a00ff; }
.booking-legend .l-un { background:#616172; }
