#links-icon {
    position: fixed;
    right: 30px;           /* Aligné avec l'inventaire */
    bottom: 270px;
    width: 72px;
    height: 60px;
    background-color: #AB855B;
    border: 2px solid #8b0000;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

/* Texte "TABLEAU" sous l'icône */
#links-icon::after {
    content: "TABLEAU";
    font-family: 'Special Elite', serif;
    font-size: 1rem;
    color: #382C1D;
    margin-top: 2px;
}

#links-icon:hover {
    transform: scale(1.09);
    background-color: #DEAC73;
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

.btn-back {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #8b0000;
    color: white;
    border: 2px solid #000;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 99999; /* Encore plus haut */
    pointer-events: auto !important; /* FORCE l'interaction */
    font-family: 'Special Elite', serif;
    text-transform: uppercase;
    box-shadow: 3px 3px 0px #000;
}

.btn-back:hover {
    background: #fbc02d;
    color: #000;
}

/* Animation quand un nouvel indice est disponible (optionnel) */
.new-link-available {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(139, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0); }
}