/* abilities.css */

.ability-inventory {
    position: absolute;
    top: 60px;
    left: 20px;
    display: flex;
    gap: 10px;
    pointer-events: none;
    z-index: 5;
}

.ability-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    transition: all var(--transition-fast);
}

.ability-card.active {
    border-color: var(--primary-pink);
    background: white;
    box-shadow: 0 0 10px rgba(255, 126, 185, 0.5);
    transform: scale(1.1);
}

.ability-icon {
    font-size: 24px;
}

.ability-info {
    font-size: 10px;
    font-weight: bold;
    color: #444;
}

/* Persistent control hint - shown once the player has at least one ability */
.ability-hint {
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: bold;
    color: #444;
    pointer-events: none;
    z-index: 5;
}
