.tuto-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* ✅ garder le fond sombre */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .tuto-step {
    background:var(--post-bg); 
    backdrop-filter: blur(8px);           
    -webkit-backdrop-filter: blur(8px);
    border: 1px dotted #fff;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 10px;
    font-family: 'Eagle Lake', serif;
    max-width: 300px;
    text-align: left;
    position: absolute;
    z-index: 10000;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
    box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.213);
  }
  
  .tuto-highlight {
    position: absolute;
    border: 2px solid white;
    border-radius: 5px;
    z-index: 10001;
    pointer-events: none;
  }
  
  .tuto-btns {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    
  }
  
  .tuto-btns button {
    padding: 4px 10px;
    font-family: 'Eagle Lake', serif;
    font-size: 10px;
    border: var(--border-color);
    color: var(--text-color); 
    background-color: #28272600;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .tuto-btns button:hover {
    color: var(--text-color-hover);
    background-color: var(--button-hover);
    
  }