/* --- CONFIGURATION GÉNÉRALE DES STICKERS --- */
.stickers {
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 5;
    cursor: grab;
    display: flex;
    justify-content: center;
    align-items: center;
    /* On garde ton transition mais on l'optimise pour le scale */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Animation "Indice" : se lance une fois après 2.5 secondes */
    animation: stickerHint 1.2s ease-in-out 2.5s 1;
    touch-action: none; /* Empêche le navigateur de gérer le scroll/zoom sur cet élément */
    user-select: none;  /* Empêche la sélection de texte pendant le drag */
    -webkit-user-drag: none; /* Empêche le comportement de drag d'image natif sur Safari */
}

/* L'effet au survol */
.stickers:hover {
    transform: scale(1.01);
}

/* On change le curseur quand on attrape le sticker */
.stickers:active {
    cursor: grabbing;
    transform: scale(1.05);
}

/* Keyframes pour l'appel visuel unique */
@keyframes stickerHint {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.03); /* Petit sursaut */
    }
    50% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.01); /* Deuxième petit rebond plus faible */
    }
    100% {
        transform: scale(1);
    }
}

.stickers:active {
    cursor: grabbing;
}

/* L'image de fond du sticker */
.stickers img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Laisse passer les clics vers la div parente */
    display: block;
}

/* --- BULLE D'INFO AU SURVOL (OPACITÉ UNIQUEMENT) --- */
.sticker-info {
    position: relative;
    width: 152px;
    height: 152px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    
    /* ÉTAT INITIAL : Invisible et fixe */
    opacity: 0;
    /* On retire scale et translateY pour ne garder que la position fixe */
    transform: scale(1); 
    filter: blur(0); 
    
    /* TRANSITION : Douce sur l'opacité uniquement */
    transition: opacity 0.4s ease-in-out;
        
    pointer-events: none; 
    z-index: 10;
}

.sticker-info p {
    margin: 0;
    color: #fff;
    font-family: 'Cinzel', serif;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    /* Le texte suit l'opacité du parent, pas besoin de transition séparée */
}

/* AFFICHAGE AU SURVOL : Simple fondu */
.stickers:hover .sticker-info {
    opacity: 1;
}

/* --- ÉTAT PENDANT LE DRAG : Disparition immédiate --- */
.stickers.is-dragging .sticker-info {
    opacity: 0 !important;
    transition: opacity 0.2s ease-in !important;
}
/* --- POSITIONS INITIALES (MAQUETTE) --- */

.sticker-1 {
    right: 15%;
    bottom: 15%;
    /* Note : Le JS transformera ça en top/left au premier clic */
}
.sticker-2 {
left: 15%;
margin-top: -380px;
}
.sticker-3 {
right: 15%;
margin-top: -50px;
}
.sticker-4 {
    /* Utilisation de marges pour le placement initial */
   left: 15%;
    margin-top: 720px;
    /* Note : Le JS nettoiera ces marges au premier clic pour éviter les bugs */
}
.sticker-5 {
right: 15%;
margin-top: -193px;
}
.sticker-6 {
    left: 15%;
    margin-top: 380px;
}