:root,
.site-recovermytrack {

  --primary-color: #387096;          
  --primary-color-light: #63a2c9;    
  --accent-color: #4fd1c5;           
  --accent-over-color: #4fd1c4;    
  --shadow-over-color: #4fd1c422;
  --highlight-color: #FFD78C;        
  --error-color: #E94F4F;            
  --text-color: #63a2c9;     
  --background-color: linear-gradient(to bottom,  #0e1116, #387096); 
  --footer-text-color-link : #4fd1c5;
  --draw-line-color : #fa5800;
  --footer-background-color : #1e2a3a;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --header-img-height: 80px;
  --etat-de-forme:#4fd1c5;
  --etat-de-forme-label-km:#4fd1c5;
  --etat-de-forme-label-unit: #63a2c9;
  --etat-de-forme-grid-color:#63a2c9;
  --etat-de-forme-bgd-0:white;
  --etat-de-forme-bgd-40:transparent;
  --etat-de-forme-bgd-70:transparent;
  --etat-de-forme-bgd-100:transparent;
  --etat-de-forme-opacity:0.5;

  --tracegeneration-popup-textcolor:#1e2a3a;

  --bg-dark: #0a0e17;          
  --text-light: #c9fcf7cc;     
  --accent: #4fd1c5;           
  --accent-hover: #4fd1c5;;    
  --border-glass: #4fd1c442;
  --glass-bg: rgba(20, 25, 50, 0.45);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", system-ui, sans-serif;
}

.header-img {
    max-height: var(--header-img-height);
    margin-bottom: 0px;
    margin-top: 30px !important;
}

.confirmation-title {
  color: rgb(245, 245, 245) !important; 
}


.help-alert {
    background-color: var(--accent-color) !important;

}

#etatDeFormeSVG {
    background: transparent !important;

}

.standard-container {
  max-width: 500px;
  margin: 20px auto;
  background: #0e1116;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 12px 12px 12px 12px;
  text-align: center;
}


/* Conteneur du message de confirmation */
.confirmation-box {
  border: none;
  background-color: transparent;
  padding: 20px;
  margin: 30px auto;
  text-align: center;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-container {
  max-width: 500px;
  margin: 20px auto;
  background: whitesmoke;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 12px 12px 12px 12px;
  text-align: center;
}

  .standard-container h1 {
    font-family: "Inter", system-ui, sans-serif !important;
    text-align: center;
    margin: 0px;
    color:whitesmoke;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    font-weight: 1000;
  }




/* FORCE FULL WIDTH */
.activities-style {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* BLOC */
.activity {
  position: relative;
  height: 40vh;
  overflow: hidden;
  text-decoration: none;
  color: white;
}

/* IMAGE PLEIN ÉCRAN */
.activity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY TEXTE */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.35);
  text-align: center;
}

.overlay h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
}

.overlay span {
  margin-top: 8px;
  font-size: 1rem;
  color: #2dd4bf; 
  font-weight: 600;
}

/* HOVER SUBTIL */
.activity:hover img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* MOBILE */
@media (max-width: 900px) {
  .activities-style {
    grid-template-columns: 1fr;
  }

  .activity {
    height: 50vh;
  }
}












.rmt-hero {
  background: radial-gradient(1200px 600px at 20% -10%, #1e2a3a, #0e1116);
  color: #ffffff;
  padding: 5rem 0;
}



.rmt-container {
  max-width: none;
  margin: 0 auto;
  padding: 0 1.5rem; /* padding interne contrôlé */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.rmt-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.rmt-intro {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.rmt-intro span {
  color: #4fd1c5;
}

.rmt-questions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.rmt-questions li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  opacity: 0.95;
}

.rmt-questions li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4fd1c5;
  font-weight: bold;
}

.rmt-highlight {
  font-size: 1.3rem;
  margin: 2rem 0;
  color: #4fd1c5;
}

.rmt-hero p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 850px;
}

.rmt-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.rmt-feature {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.rmt-conclusion {
  font-size: 1.1rem;
  margin-top: 2rem;
}

.rmt-signature {
  margin-top: 3rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

@media (max-width: 600px) {
  .rmt-hero {
    padding: 3.5rem 1.25rem;
  }
}




.footer-info {
  color: white!important;
}

.footer-legal {
 color: white!important;
  
}












/* Conteneur global */
.categories-wrapper {
  margin: 0.5rem auto 4rem;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1200px;
}

.categories-hashtags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;           /* espacement agréable */
  font-family: system-ui, -apple-system, BlinkMacOS-system, sans-serif;
}

/* Chaque hashtag */
.hashtag {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 999px;        /* ultra rond */
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hashtag:hover,
.hashtag:focus {
  transform: translateY(-3px);
  background: var(--primary-color);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 10px 30px #4fd1c442;
  outline: none;
}

/* Glow / accent sur les plus importants */
.hashtag.utmb,
.hashtag.ultratrail,
.hashtag.marathon,
.hashtag.trail,
.hashtag.ultra {
  background: linear-gradient(145deg,#4fd1c442, #4fd1c46e);
  border-color: #4fd1c442;
  font-weight: 600;
}

.hashtag.utmb:hover,
.hashtag.ultratrail:hover,
.hashtag.marathon:hover,
.hashtag.trail:hover,
.hashtag.ultra:hover {
  background: linear-gradient(145deg, #4fd1c442, #4fd1c42a);
  border-color: var(--accent-hover);
  box-shadow: 0 12px 35px #4fd1c442;
}

/* Responsive mobile */
@media (max-width: 640px) {
  .categories-hashtags {
    gap: 0.9rem 1rem;
  }
  
  .hashtag {
    padding: 0.55rem 1.1rem;
    font-size: 0.96rem;
  }
}

