/* ============================================
   Mini-modales d'indication (GameHints)
   Colonne du panel de quêtes, non bloquantes
   ============================================ */

#gameHintsHUD {
    position: absolute;
    left: 25px;
    bottom: 150px;
    z-index: 997; /* juste sous le tracker de quêtes (998) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 340px;
    max-width: calc(100vw - 50px);
    pointer-events: none;
}

.game-hint-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    pointer-events: auto;

    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.game-hint-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.game-hint-card.is-leaving {
    opacity: 0;
    transform: translateX(-14px);
}

.game-hint-icon {
    width: 34px;
    height: 34px;
    flex: none;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.game-hint-content {
    min-width: 0;
    flex: 1 1 auto;
}

.game-hint-title {
    font-size: 13px;
    font-weight: 800;
    color: #eaf6ff;
    margin-bottom: 4px;
}

.game-hint-text {
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(230, 238, 248, 0.88);
    margin-bottom: 8px;
}

.game-hint-text strong {
    color: #7fe3ff;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(34, 227, 255, 0.35);
}

.game-hint-ok {
    appearance: none;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #eaf6ff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.15s ease;
}

.game-hint-ok:hover {
    background: rgba(255, 255, 255, 0.18);
}
